body {
    margin: 0;
    font-family: Arial;
    background: #111;
    color: white;
}

header {
    text-align: center;
    background: black;
    padding: 20px;
    position: relative;
}

.price-badge {
    position: absolute;
    right: 40px;
    top: 90px;
    background: #FDFEFE;
    border: 3px solid #CD6155;
    color: black;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 5px;
}

.hero img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    cursor: pointer;
}

.call-btn {
    text-align: center;
    margin: 20px;
}

.call-btn a {
    background: #00ff88;
    color: black;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
}

.content {
    padding: 25px;
    background: #1c1c1c;
    line-height: 1.6;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery img {
    width: calc((100% - 30px) / 3);
    height: 250px;
    object-fit: cover;
    cursor: pointer;
}

.contact {
    padding: 30px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    padding: 12px;
    background: #CD6155;
    border: 3px solid white;
    font-size: 16px;
    cursor: pointer;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

@media(max-width:768px){
    .gallery img {
        width: 100%;
    }
}

.specs {
    padding: 30px;
    background: #181818;
}

.specs h2 {
    text-align: center;
    margin-bottom: 20px;
}

.specs table {
    width: 100%;
    border-collapse: collapse;
}

.specs th, .specs td {
    border: 1px solid #333;
    padding: 12px;
    text-align: left;
}

.specs th {
    background: #00ff88;
    color: black;
}

.specs tr:nth-child(even) {
    background: #222;
}


.banner {
    background: #CD6155;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.action-buttons {
    text-align: center;
    margin: 20px;
}

.action-buttons a {
    margin: 10px;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.call {
    background: #0088ff;
    color: black;
}

.text {
    background: #0088ff;
    color: white;
}

.highlights {
    padding: 30px;
    background: #121212;
}

.highlights ul {
    max-width: 600px;
    margin: auto;
    line-height: 1.8;
}

.location {
   display: block;
   margin: 0 auto;
   width: 80%; 
}


.seo-text {
    padding: 25px;
    background: #0f0f0f;
    font-size: 16px;
}