/* =========================================
   GLOBAL RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   GLOBAL STYLING
========================================= */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.grecaptcha-badge {
    visibility: hidden;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================================
   HEADER
========================================= */

header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.logo img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 0;
}

/* =========================================
   NAVIGATION
========================================= */

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

nav ul li a {
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

/* =========================================
   MAIN CONTENT
========================================= */

section {
    padding: 50px 20px;
    text-align: center;
}

.services-section {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section p:last-of-type {
    margin-bottom: 10px;
}

/* =========================================
   GENERAL IMAGES
========================================= */

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* =========================================
   INDEX IMAGE SECTION
========================================= */

.images-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.images-section a {
    display: block;
}

.images-section img {
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.images-section img:hover {
    transform: scale(1.03);
}

/* =========================================
   PRICING IMAGES
========================================= */

.pricing-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

@media (min-width: 1024px) {

    .pricing-image {
        width: 50%;
    }

}



/* =========================================
   BUTTONS
========================================= */

.btn {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #444;
    text-decoration: none;
}

.btn img {
    width: 24px;
    height: 24px;
    border-radius: 0;
}

/* =========================================
   CONTACT OPTIONS
========================================= */

.contact-options {
    margin-top: 10px;
    text-align: center;
}

.contact-options a {
    display: inline-flex;
}

/* =========================================
   FOOTER
========================================= */

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

/* =========================================
   FORMS
========================================= */

.form-group {
    margin-bottom: 20px;
    text-align: center;
}

.form-group label,
.form-group input,
.form-group textarea {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

textarea {
    resize: vertical;
}

input[type="text"],
textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* =========================================
   FORM BUTTONS
========================================= */

button[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* =========================================
   WARRANTY SECTION
========================================= */

.warranty {
    background-color: #f0f0f0;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
    text-align: center;
}

/* =========================================
   LISTS
========================================= */

ul {
    list-style-position: inside;
    display: inline-block;
    text-align: left;
    margin: 0 auto 20px;
}

ul li {
    margin-bottom: 10px;
}

/* =========================================
   PHONE LINKS
========================================= */

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: inherit;
}

.phone-link {
    font-size: 1.8rem;
    color: #000;
    font-weight: bold;
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.phone-link:hover {
    background-color: #ddd;
    text-decoration: none;
}

/* =========================================
   PRICING GRID
========================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
}

.pricing-item {
    text-align: center;
}

.pricing-item h3 {
    color: #333;
}

.pricing-item a {
    color: inherit;
}

/* =========================================
   GALLERY PAGE
========================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* =========================================
   404 PAGE
========================================= */

.container {
    max-width: 600px;
    margin: 100px auto;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    nav ul {
        gap: 12px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .images-section img {
        max-width: 100%;
    }

    .pricing-image {
        width: 100%;
    }

}