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

:root {
    --bg: #ECECEC;
    --text: #252424;
    --accent-dark: #28495d;
    --accent-mid: #4281A7;
    --accent-warm: #E8782F;
}

body {
    background-color: var(--bg);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.4;
}


.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}


header {
    background: transparent;
    padding: 8px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.Logo {
    width: 140px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #555555;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
    font-weight: 600;
}

nav a:hover {
    background-color: #78a3bd;
    color: white;
}


.section-home {
    background: linear-gradient(50deg, var(--accent-mid), var(--accent-warm));
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    color: white;
    text-align: center;
}

.section-home .center {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.section-home h1 {
    font-size: 36px;
    max-width: 900px;
    line-height: 1.1;
    color: white;
}

.btn {
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--accent-dark);
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    background: #59819a;
    transform: translateY(-2px);
    color: white;
}

.section-services {
    padding: 40px 0;
}
.extra-service {
    margin-top: 20px;
    color: var(--accent-dark);
    font-weight: 700;
}


#Services>h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #4281a7;
}

.services-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.services-img {
    width: 50%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.Services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    width: 48%;
}

.Services h2 {
    color: var(--text);
    font-size: 18px;
    line-height: 1.6;
}

.Services a {
    margin-top: 15px;
}

.section-about {
    padding: 60px 0;
    background: #f7f7f7;
}

.section-about h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #4281a7;
}

.about-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: 5px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat h3 {
    font-size: 24px;
    color: var(--accent-mid);
}

.stat p {
    font-size: 14px;
    color: #555555;
}

.about-img {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.section-testimonials {
    padding: 60px 0;
    background: #f0f4f8;
    width: 89%;
    margin: auto;
}

.section-testimonials h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--accent-mid);
}

.testimonials-inner {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 300px;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}


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

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial span {
    font-weight: 600;
    color: var(--accent-dark);
}

.section-contact {
    padding: 60px 0;
    background: #f7f7f7;
}

.section-contact h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--accent-mid);
}

.contact-inner {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 95%;
    margin: auto;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--accent-dark);
}

.contact-item a {
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.contact-form {
    flex: 1;
    min-width: 250px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
}

.contact-form button {
    width: fit-content;
    padding: 10px 20px;
    border: none;
    background: var(--accent-mid);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form button:hover {
    background: var(--accent-warm);
}

.site-footer {
    background: var(--accent-dark);
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-links a,
.footer-contact a {
    color: white;
    text-decoration: none;
    margin: 0 6px;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-warm);
}

@media (max-width: 1024px) {
    .Logo {
        width: 120px;
    }

    .section-home h1 {
        font-size: 30px;
    }

    .services-img {
        max-height: 360px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .Logo {
        width: 40%;
        max-width: 160px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .section-home {
        padding: 60px 10px;
        min-height: 60vh;
    }

    .section-home h1 {
        font-size: 22px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .services-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .services-img {
        width: 100%;
        max-height: none;
    }

    .Services {
        width: 100%;
        align-items: center;
    }

    .Services h2 {
        font-size: 16px;
    }

    .about-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-img img {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-form button {
        width: 100%;
    }

    .testimonials-inner {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        gap: 6px;
    }
}

@media (max-width: 420px) {
    nav a {
        padding: 6px 8px;
        font-size: 14px;
    }

    .section-home h1 {
        font-size: 20px;
    }

    .Logo {
        width: 46%;
    }

    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 360px) {
    .section-home h1 {
        font-size: 18px;
    }

    .btn {
        font-size: 14px;
        padding: 8px 12px;
    }
}



.section-gallery {
    padding: 48px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(240, 245, 250, 0.6));
}

.section-gallery h2 {
    text-align: center;
    font-size: 28px;
    color: var(--accent-mid);
    margin-bottom: 6px;
}

.section-gallery .gallery-sub {
    text-align: center;
    color: #666;
}

#Gallery>h2 {
    margin-bottom: 20px;

}
.Before
{
    background-color: #E8782F;
}

.pairs-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
}

.pair {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(16, 36, 51, 0.06);
    position: relative;
}

.pair-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f8fa;
}

.pair-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.25s ease;
}

.pair-item .label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    padding: 6px 9px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    z-index: 2;
}
.Before
{
    background-color: #E8782F;
}
.After
{
    background-color: var(--accent-dark);
}

.pair-item:hover img,
.pair-item:focus img {
    transform: scale(1.04);
}

.extras-grid {
    margin-top: 22px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(16, 36, 51, 0.05);
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.2s ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.04);
}

@media (max-width: 1100px) {
    .pairs-grid {
        grid-template-columns: 1fr;
    }

    .extras-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {

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

    .pairs-grid {
        gap: 14px;
    }

    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pair-item {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 420px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }

    .pair-item {
        aspect-ratio: 16 / 9;
    }

    .section-gallery {
        padding: 28px 0;
    }
}

.pair-item:focus,
.gallery-item:focus {
    outline: 3px solid rgba(66, 129, 167, 0.18);
    outline-offset: 3px;
    transform: translateY(-3px);
    transition: transform 0.15s ease;
}