/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #1a1a1a;
    color: #f4f4f4;
    line-height: 1.6;
}

.container {
    padding: 0 24px;
    margin: auto;
    overflow: hidden;
    max-width: 1200px;
}

/* Header and Navigation */
header {
    background: #222;
    color: #fff;
    padding: 20px 0;
    border-bottom: rgb(197, 71, 71) 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
    margin-top: 5px;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
}

header .logo {
    float: left;
    font-weight: bold;
    font-size: 24px;
}

/* Mobile Quote Button */
.mobile-quote-btn {
    float: right;
    background: rgb(197, 71, 71);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

/* Hero Section */
#hero {
    min-height: 400px;
    background-size: cover;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero h1 {
    font-size: 55px;
    margin-bottom: 10px;
    line-height: 1.2;
}

#hero p {
    font-size: 20px;
}

.btn {
    display: inline-block;
    background: rgb(197, 71, 71);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

/* Sections */
section {
    padding: 40px 0;
}

section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

/* Services Section */
.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    background: #333;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
}

.card h3 {
    color: rgb(197, 71, 71);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 400px;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-button:hover {
    background: rgba(197, 71, 71, 0.8);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: #555;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dot.active {
    background: rgb(197, 71, 71);
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .carousel-slide {
        padding: 0 5px;
    }
}

/* Contact Form */
#contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
}

#contact input, #contact textarea {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #333;
    color: #fff;
}

/* Success Message */
#success-message {
    max-width: 600px;
    margin: auto;
    text-align: center;
    padding: 30px 20px;
    background: #333;
    border-radius: 5px;
    border-left: 4px solid rgb(197, 71, 71);
}

#success-message h3 {
    color: rgb(197, 71, 71);
    margin-top: 0;
}

.hidden {
    display: none !important;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
    margin-top: 20px;
}