
html {
    scroll-behavior: smooth;
}

:root {
    --primary: #f2c94c;
    --dark: #111;
    --light: #fff;
    --gray: #1b1b1b;
    --radius: 16px;
}

/* DARK MODE ALWAYS ON */
body {
    background: #121212;
    color: #f5f5f5;
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

/* HEADER — CENTERED */
/* HEADER — STRONG GRADIENT + COMPRESSED + CENTERED */
/* MODERN COMPACT HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /*background: linear-gradient( to bottom, #0f172a 0%,*/ /* top (lighter dark) */
    /*#020617 100%*/ /* bottom (deeper dark) */
    /*);*/
    /*background: radial-gradient(circle at top, rgba(255,255,255,0.18) 0%, rgba(48,48,48,0.96) 30%, rgba(18,18,18,0.98) 100%);*/
    background: linear-gradient(to bottom, #ffffff 0%, #f2c94c 100%);
    /*border-bottom: 4px solid #f1c232;*/
    padding: 0.7rem 1rem;
}

/* LAYOUT */
.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* BRAND AREA */
.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

/* LOGO */
.logo {
    width: 100px;
    /* height: 70px;*/
    /* object-fit: contain;*/
    /*padding: 10px;*/
    /* background: #ffffff;*/
    /* border-radius: 16px;*/
    /* border: 2px solid rgba(255,255,255,0.25);*/
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.45), 0 0 0 3px rgba(255,255,255,0.05);*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* TEXT */
.logo-text h1 {
    margin: 0;
    color: #111;
    font-size: 2.00rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.logo-text p {
    margin: 0.2rem 0 0;
    color: #111;
    font-size: 0.78rem;
    font-weight: 500;
}

/* CTA BUTTON */
.header-cta {
    background: var(--primary);
    color: rgba(18,18,18,0.98);
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.2s ease;
    white-space: nowrap;
}

    .header-cta:hover {
        transform: translateY(-1px);
        opacity: 0.92;
    }

/* MOBILE */
@media (max-width: 768px) {

    .site-header {
        padding: 0.6rem 0.8rem;
    }

    .logo {
        width: 48px;
    }

    .logo-text h1 {
        font-size: 0.95rem;
    }

    .logo-text p {
        font-size: 0.7rem;
    }

    .header-cta {
        display: none;
    }
}

/* HERO */
.hero {
    background: var(--primary);
    color: #111;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 0 0 var(--radius) var(--radius);
}

    .hero h2 {
        margin: 0;
        font-size: 2rem;
    }

    .hero p {
        margin-top: 0.4rem;
        font-size: 1.1rem;
    }

    .hero span {
        display: block;
        margin-top: 0.5rem;
        font-weight: 600;
    }

/* SLIDESHOW FIX */
.slideshow-container {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: var(--radius);
}

slideImage {
    height: 100px;
}

.slide {
    display: none;
}

    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

@media (min-width: 900px) {
    .slide img {
        max-height: 650px;
    }
}

/* SECTIONS */
.section {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: #1e1e1e;
    padding: 1.8rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .card.visible {
        opacity: 1;
        transform: translateY(0);
    }

.section h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.7rem;
}

/* SERVICES */
.services-list {
    list-style: none;
    padding: 0;
}

    .services-list li {
        background: #2a2a2a;
        padding: 0.9rem;
        margin: 0.5rem 0;
        border-radius: var(--radius);
        border-left: 6px solid var(--primary);
        font-weight: 500;
    }

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item img {
    width: 100%;
    border-radius: var(--radius);
}

.gallery-item span {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.9rem;
    text-align: center;
}

/* REQUEST QUOTE FORM */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .booking-form input,
    .booking-form textarea,
    .booking-form select {
        padding: 0.9rem;
        border-radius: var(--radius);
        border: 1px solid #555;
        background: #2a2a2a;
        color: #f5f5f5;
        font-size: 1rem;
    }

    /* ANIMATED BUTTON */
    .booking-form button {
        background: var(--primary);
        border: none;
        padding: 1rem;
        border-radius: var(--radius);
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        color: #111;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .booking-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.4);
        }

/* MAP */
.map-wrap iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: var(--radius);
}

/* FLOATING CALL BUTTON */
.call-now {
    position: fixed;
    bottom: 90px;
    right: 16px;
    background: var(--primary);
    color: #111;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    z-index: 999;
    transition: transform 0.2s ease;
}

    .call-now:hover {
        transform: scale(1.08);
    }

/* Elfsight Google Reviews – Dark Mode Integration */
.elfsight-app-af1a6ff2-3d56-4a48-a532-0f0c08b1234a {
    background: #1e1e1e !important;
    border-radius: var(--radius);
    padding: 1rem;
}

    .elfsight-app-af1a6ff2-3d56-4a48-a532-0f0c08b1234a * {
        color: #f5f5f5 !important;
    }

/* Fix Elfsight Google Reviews breaking layout */
.reviews-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    background: #1e1e1e;
    padding: 0.5rem;
    box-sizing: border-box;
}

    .reviews-wrapper iframe {
        max-width: 100% !important;
        border-radius: var(--radius);
    }

.elfsight-app-9a2d5e2b-de41-4788-8689-c9a9f8209e8b * {
    color: #f5f5f5 !important;
}



/* STICKY BOTTOM BAR */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: var(--light);
    display: flex;
    justify-content: space-around;
    padding: 0.6rem 0.4rem;
    font-size: 0.9rem;
    z-index: 998;
}

    .bottom-bar a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

footer {
    text-align: center;
    padding: 1.5rem 1rem 3.5rem;
    font-size: 0.9rem;
    color: #aaa;
}

/*Submit Message*/
.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 9999;
}

.form-overlay.show {
    opacity: 1;
    visibility: visible;
}

.form-message-box {
    width: 90%;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 38px 30px;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    transform: translateY(10px);
    transition: .25s ease;
}

.form-overlay.show .form-message-box {
    transform: translateY(0);
}

.spinner {
    width: 46px;
    height: 46px;
    margin: 0 auto 20px;
    border: 3px solid #e5e7eb;
    border-top-color: #1d4ed8;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-message-box h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #111827;
}

.form-message-box p {
    margin: 0;
    color: #6b7280;
    line-height: 1.5;
    font-size: 15px;
}

.form-success .spinner {
    animation: none;
    border: none;
    width: auto;
    height: auto;
    font-size: 52px;
    color: #16a34a;
}

.form-error .spinner {
    animation: none;
    border: none;
    width: auto;
    height: auto;
    font-size: 52px;
    color: #dc2626;
}