* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.6;
}

/* GLOBAL CONTAINER */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */

.hero {
    background: url('wood-dark.jpg') center/cover no-repeat;
    height: 100vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.85);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.tagline {
    margin: 20px 0;
    font-size: 1.3rem;
    color: #c9a227;
}

.logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 20px;
}

/* BUTTONS */

.btn-gold {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(45deg, #c9a227, #f1c40f);
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    margin: 8px;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #c9a227;
    color: #c9a227;
    text-decoration: none;
    border-radius: 3px;
    margin: 8px;
}

/* CONTACT STRIP */

.contact-strip {
    background: #000;
    text-align: center;
    padding: 20px;
    font-weight: bold;
    border-top: 3px solid #c9a227;
    border-bottom: 3px solid #c9a227;
}

.contact-strip a {
    color: #c9a227;
    text-decoration: none;
}

/* SERVICES */

.services {
    padding: 80px 0;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    letter-spacing: 3px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.featured {
    border: 2px solid #f1c40f;
    box-shadow: 0 0 20px rgba(201,162,39,0.3);
}


.service-card {
    background: #1b1b1b;
    padding: 30px;
    border-left: 5px solid #c9a227;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h3 {
    color: #f1c40f;
    margin-bottom: 15px;
}

.service-icon {
    width: 50px;
    margin-bottom: 15px;
}

/* GALLERY */

.gallery {
    padding: 80px 0;
    background: #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    border: 3px solid #c9a227;
}

/* CONTACT */

.contact {
    padding: 80px 0;
    background: #0f0f0f;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 15px;
    background: #1b1b1b;
    border: 1px solid #333;
    color: white;
}

textarea {
    min-height: 150px;
}

.success {
    background: #c9a227;
    color: black;
    padding: 15px;
    margin-bottom: 20px;
}

/* FOOTER */

footer {
    background: #000;
    text-align: center;
    padding: 30px;
    border-top: 3px solid #c9a227;
}

/* ============================= */
/* MOBILE BREAKPOINTS */
/* ============================= */

@media (max-width: 992px) {

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn-gold, .btn-outline {
        width: 100%;
        display: block;
    }
}

/* FLOATING MOBILE CALL BUTTON */

.mobile-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c9a227;
    color: black;
    padding: 15px 18px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    display: none;
}

@media (max-width: 768px) {
    .mobile-call {
        display: block;
    }
}
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.slide {
    display: none;
}

.slide-images {
    display: flex;
    gap: 20px;
}

.slide-images div {
    flex: 1;
    text-align: center;
}

.slide-images img {
    width: 100%;
    border: 3px solid #c9a227;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: #c9a227;
    font-weight: bold;
    font-size: 24px;
    user-select: none;
}

.next {
    right: 0;
}
.slide {
    display: none;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: #c9a227;
    font-weight: bold;
    font-size: 24px;
    user-select: none;
    transform: translateY(-50%);
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    color: #f1c40f;
}
.hero {
    position: relative;
    height: 100vh;
    background: url('logo_2.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.75)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.5rem;
    color: #c9a227;
    margin-bottom: 30px;
}
.big-btn {
    font-size: 1.2rem;
    padding: 18px 40px;
    margin: 10px;
}

.btn-gold {
    background: linear-gradient(45deg, #c9a227, #f1c40f);
    color: #000;
    font-weight: 900;
    border-radius: 4px;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #c9a227;
    color: #c9a227;
    font-weight: 900;
    border-radius: 4px;
    text-decoration: none;
}
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .big-btn {
        display: block;
        width: 100%;
        font-size: 1rem;
    }

}
.facebook-reviews {
    padding: 80px 0;
    background: #111;
    text-align: center;
    border-top: 3px solid #c9a227;
}

.fb-box {
    max-width: 700px;
    margin: auto;
}

.fb-box p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #ccc;
}
 .service-select {
    background: #1b1b1b;
    padding: 20px;
    border: 1px solid #333;
    margin-bottom: 20px;
}

.service-select label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
}

.error {
    background: #e74c3c;
    padding: 12px;
    margin-bottom: 15px;
}
