:root {
    --red: #b60000;
    --dark: #15150f;
    --text: #2a2a2a;
    --light: #f5f5f3;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

header {
    width: 100%;
    min-height: 92px;
    padding: 14px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #dddddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

.logo {
    width: 320px;
    max-width: 52%;
    height: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--red);
}
.header-call-button {
    padding: 11px 19px;
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
}

.header-call-button:hover {
    background: #920000;
    color: var(--white);
}

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.62;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.68) 43%,
            rgba(0, 0, 0, 0.18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 720px;
    max-width: 88%;
    margin-left: 7%;
    padding: 70px 0;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(42px, 5.5vw, 74px);
    line-height: 1.04;
    max-width: 800px;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-content p {
    max-width: 680px;
    margin-bottom: 34px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    color: #f1f1f1;
}

.button {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    background: #920000;
    transform: translateY(-2px);
}

section {
    scroll-margin-top: 100px;
}

#services,
#about,
#contact {
    min-height: 100px;
}

@media (max-width: 800px) {
    header {
        min-height: auto;
        padding: 14px 5%;
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        width: 240px;
        max-width: 82%;
    }

    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 22px;
        padding-bottom: 4px;
    }

    nav a {
        font-size: 15px;
    }

    .header-call-button {
        padding: 9px 15px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-image {
        object-position: center;
    }

    .hero::after {
        background: rgba(0, 0, 0, 0.68);
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
        padding: 70px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 58px);
    }

    .hero-content p {
        font-size: 19px;
    }

    .button {
        width: 100%;
        max-width: 340px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        gap: 16px;
    }

    nav a {
        font-size: 14px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        max-width: 92%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }
}
.hero-label,
.section-label {
    margin-bottom: 12px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-label {
    color: #ffffff;
}

.hero-description {
    max-width: 760px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.button-secondary {
    border: 2px solid #ffffff;
    background: transparent;
}

.button-secondary:hover {
    background: #ffffff;
    color: var(--dark);
}

.hero-address {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.section {
    padding: 90px 6%;
}

.section-heading {
    width: 820px;
    max-width: 100%;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.service-area-content h2,
.contact-card h2 {
    margin-bottom: 18px;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
}

.section-heading > p:last-child {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    color: #5a5a5a;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1320px;
    margin: 0 auto;
}

.service-card {

    overflow:hidden;

    background:var(--white);

    border:1px solid #e2e2e2;

    border-radius:10px;

    box-shadow:0 12px 32px rgba(0,0,0,.08);

    transition:
        transform .28s,
        box-shadow .28s;

}

.service-card img {
    width: 100%;
    height: 245px;
    display: block;
    object-fit: cover;
    transition: transform .45s;
}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 22px 50px rgba(0,0,0,.18);

}

.service-card:hover img {

    transform: scale(1.05);

}

.service-card-content {
    padding: 28px;
}

.service-card h3 {
    margin-bottom: 18px;
    color: var(--dark);
    font-size: 25px;
    line-height: 1.2;
}

.service-card ul {
    padding-left: 20px;
}

.service-card li {
    margin-bottom: 9px;
}

.about-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    background: var(--light);
}

.about-image {
    min-height: 620px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-content {
    padding: 90px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content > p:not(.section-label) {
    margin-bottom: 18px;
    font-size: 18px;
    color: #4d4d4d;
}

.about-highlights {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.about-highlights div {
    padding: 18px 20px;
    background: var(--white);
    border-left: 5px solid var(--red);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.about-highlights strong,
.about-highlights span {
    display: block;
}

.about-highlights strong {
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 17px;
}

.about-highlights span {
    color: #666666;
}

.gallery-section {
    padding: 90px 6%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.service-area-section {
    padding: 90px 6%;
    background: var(--dark);
    color: var(--white);
}

.service-area-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.service-area-content h2 {
    color: var(--white);
}

.service-area-content p:last-child {
    font-size: 19px;
    color: #e6e6e6;
}

.contact-section {
    padding: 90px 6%;
    background: #ececea;
}

.contact-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 38px 0 24px;
}

.contact-details div {
    padding: 24px;
    background: var(--light);
    border-radius: 6px;
}

.contact-details strong {
    display: block;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 18px;
}

.contact-details a {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
}

.walk-in-note {
    margin-bottom: 26px;
    font-size: 18px;
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.button-secondary-dark {
    border: 2px solid var(--dark);
    background: transparent;
    color: var(--dark);
    box-shadow: none;
}

.button-secondary-dark:hover {
    background: var(--dark);
    color: var(--white);
}

footer {
    padding: 48px 6%;
    background: #0d0d0d;
    color: #d8d8d8;
    text-align: center;
}

footer img {
    width: 220px;
    max-width: 80%;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 4px;
}

footer p {
    margin-bottom: 6px;
}

footer a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.copyright {
    margin-top: 18px;
    font-size: 14px;
    color: #969696;
}

@media (max-width: 1000px) {
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .service-card {
        display: grid;
        grid-template-columns: 42% 58%;
    }

    .service-card img {
        height: 100%;
        min-height: 310px;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 480px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .section,
    .gallery-section,
    .service-area-section,
    .contact-section {
        padding: 68px 5%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .service-card {
        display: block;
    }

    .service-card img {
        height: 235px;
        min-height: 0;
    }

    .about-image {
        min-height: 340px;
    }

    .about-content {
        padding: 68px 6%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 260px;
    }

    .contact-card {
        padding: 38px 22px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }
}
.floating-call {

    position: fixed;

    right: 30px;

    bottom: 30px;

    background: var(--red);

    color: white;

    text-decoration: none;

    padding: 16px 22px;

    border-radius: 50px;

    font-weight: 700;

    font-size: 17px;

    box-shadow: 0 14px 35px rgba(0,0,0,.25);

    z-index: 5000;

    transition: .25s;

}

.floating-call:hover{

    transform:translateY(-3px);

    background:#910000;

}

@media(max-width:700px){

    .floating-call{

        right:18px;

        bottom:18px;

        padding:15px 20px;

        font-size:16px;

    }

}
.why-section {
    padding: 90px 6%;
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 1320px;
    margin: 0 auto;
}

.why-card {
    padding: 30px 26px;
    background: var(--white);
    border-radius: 8px;
    border-top: 5px solid var(--red);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.why-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
}

.why-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 21px;
    line-height: 1.25;
}

.why-card p {
    color: #5c5c5c;
}

@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .why-section {
        padding: 68px 5%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}
.request-section {
    padding: 90px 6%;
    background: #ffffff;
}

.request-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 50px;
    align-items: start;
}

.request-info h2 {
    margin-bottom: 18px;
    color: var(--dark);
    font-size: clamp(34px,4vw,52px);
}

.request-info p:last-child {
    font-size: 19px;
    color: #555;
}

.request-form {
    display: grid;
    gap: 18px;
}

.request-form input,
.request-form textarea {

    width:100%;

    padding:18px;

    border:1px solid #d8d8d8;

    border-radius:6px;

    font-family:inherit;

    font-size:17px;

    transition:border-color .25s;

}

.request-form input:focus,
.request-form textarea:focus{

    outline:none;

    border-color:var(--red);

}

.request-form textarea{

    resize:vertical;

}

@media(max-width:900px){

    .request-wrapper{

        grid-template-columns:1fr;

    }

}
.website-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.request-status {
    min-height: 26px;
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.request-status.success {
    color: #1f7a36;
}

.request-status.error {
    color: var(--red);
}

.request-form button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}