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

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
} 

body {
    overflow: hidden;
    /* background-color: #edf2ec6d; */
    font-family: 'EB Garamond', serif;
    background-color: #23252d;
    font-weight: 100;
}



/* edf2ec - light green
8a9b89 dark green */

img {
    user-select: none;
    /* pointer-events: none; */
}

.top-padding {
    padding-top: 6rem !important;
}

.contrast-text {
    color: #FFAD60 !important;
}

.glow-line {
    width: 90%; /* Set the desired width of the line */
    height: 0.2rem; /* Set the height of the line */
    background-color: #fff; /* The color of the line */
    position: relative;
    margin: 50px auto; /* Centers the line horizontally */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* The glowing effect */
}

.glow-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    transform: translateX(-50%);
    animation: glow 0.6s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 255, 255, 1);
    }
}

/* //////////-NAV//////////// */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #23252d;
    padding: 6px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 6rem;
}
.navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
.navbar .menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.navbar .menu li {
    position: relative;
}
.navbar .menu li a, .navbar .menu li p {
    color: white;
    text-decoration: none;
    font-size: 2.6rem;
    transition: color 0.3s;
    line-height: 1;
}
.navbar .menu li a:hover {
    color: #f4a261;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #23252d;
    list-style: none;
    min-width: 20rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.dropdown-menu li {
    text-align: left;
}
.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
    padding: 1rem;
}
.dropdown-menu li a:hover {
    background: #555;
}
.menu li:hover .dropdown-menu {
    display: block;
}

.nav-logo {
    width: 18rem;
    filter: brightness(100);
}
.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #23252d;
        text-align: center;
    }
    .navbar .menu.active {
        display: flex;
    }
    .navbar .menu li {
        margin: 10px 0;
        text-align: center;
    }
    .hamburger {
        display: block;
    }
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background: #23252d;
    }
    .menu li:hover .dropdown-menu {
        display: block;
    }
}
.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background: #23252d;
        text-align: center;
    }
    .navbar .menu.active {
        display: flex;
    }
    .navbar .menu li {
        margin: 10px 0;
    }
    .hamburger {
        display: block;
    }
}

/* -------HERO SECTION------ */

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/imgs/tile-banner.jpg");
    background-position: bottom;
    background-size: cover;
    height: 70vh;
    margin-top: 6rem;
}

.hero-box {
    padding: 1.2rem;
    margin: 0 auto;
    height: 100%;
}

.hero-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-text-box {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-header {
    font-size: 9.6rem;
    color: #fff;
    line-height: 0.8;
}

.hero-caption {
    font-size: 3.6rem;
    font-weight: 100;
    margin-bottom: 3.6rem;
    color: #fff;
}

.hero-link {
    background-color: #fff;
    padding: 0.6rem 3.6rem;
    text-decoration: none;
    color: #23252d;
    font-size: 2.4rem;
    border-radius: 26px;
}

/* -------ABOUT SECTION------ */

.about {
    padding: 9.6rem 1.2rem;
}

.about-box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    max-width: 120rem;
    align-items: center;
}

.about-one {
    padding: 0.6 1.2rem;
    border: 0.4rem solid #ffad6045;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 12rem;
}

.about-number {
    font-size: 8.4rem;
    color: #FFAD60;
    background-color: #23252d;
    margin-left: auto;
    margin-right: -4rem;
}

.about-number-text {
    color: #fff;
    font-size: 1.8rem;
    margin: auto;
    background-color: #23252d;
    padding: 0.6rem 0;
    margin-right: -7rem;
}

.about-two {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-left: 15rem;
}

.about-header {
    font-size: 1.8rem;
}

.about-caption {
    font-size: 3.6rem;
    color: #fff;
}

.about-three {
    width: 35rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-left: 7rem;
}

.about-text {
    font-size: 1.8rem;
    color: #fff;
}

.about-link {
    background-color: #666;
    padding: 0.6rem 3.6rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 26px;
    align-self: flex-start;
}

/* ------HALLWAY SECTION------ */

.hallway {
    padding: 0rem 1.2rem 9.6rem 1.2rem;
    position: relative
}

.hallway::before {
    content: "";
    position: absolute;
    background-image: url('/imgs/shape-1.png'); /* Local image URL */
    background-size: cover; /* Make sure the image covers the whole area */
    background-position: center;
    top: -100%;
    left: -70%;
    rotate: 120deg;
    opacity: 0.1;
    width: 90rem; /* Set the diameter of the circle */
    height: 90rem; /* Set the diameter of the circle */
    transform: translate(-50%, -50%); /* Centers the circle behind the element */
    z-index: -2;
}


.hallway-box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.hallway-container {
    display: flex;
    max-width: 160rem;
    align-items: center;
    gap: 3.6rem;
}

.hallway-item {
    background-size: cover;
    height: 60rem;
    width: 40rem;
}

.hallway-img-one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url("/imgs/hallway-5.jpg");
}

.hallway-img-two {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url("/imgs/marble-1.jpg");
}

.hallway-img-three {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url("/imgs/travertine-1.jpg");
}

.hallway-img-four {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),url("/imgs/slate-2.jpg");
}

.hallway-text {
    color: #fff;
    padding: 1.2rem;
    font-size: 3.6rem;
}

/* ------QUAD SECTION------ */

.quad {
    padding: 0rem 1.2rem 9.6rem 1.2rem;
    position: relative;
}

.quad-box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.quad-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 120rem;
    align-items: center;
    gap: 3.6rem;
}

.quad-header-box {
    grid-column: 1/5;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-right: auto;
    margin-bottom: 3.6rem;
}

.quad-header {
    font-size: 2.4rem;
    color: #FFAD60;
}

.quad-caption {
    font-size: 4.8rem;
    color: #fff;
    line-height: 0.8;
}

.quad-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.2rem;
}

.quad-icon {
    width: 10rem;
    z-index: 1;
}

.quad::before {
    content: "";
    position: absolute;
    background-image: url('/imgs/shape-1.png'); /* Local image URL */
    background-size: cover; /* Make sure the image covers the whole area */
    background-position: center;
    top: -10%;
    left: 85%;
    opacity: 0.1;
    width: 90rem; /* Set the diameter of the circle */
    height: 90rem; /* Set the diameter of the circle */
    transform: translate(-50%, -50%); /* Centers the circle behind the element */
    z-index: -1;
}

.quad-item-header {
    font-size: 2.4rem;
    color: #fff;
}

.quad-text {
    font-size: 1.8rem;
    color: #fff;
}

/* ------OVERLAY SECTION------ */

.overlay {
    padding: 0rem 3.6rem 9.6rem 3.6rem;
}

.overlay-box {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/imgs/tiles-1.jpg");
    background-position: center;
    background-size: cover;
    height: 50rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.overlay-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 120rem;
    align-items: center;
    gap: 3.6rem;
}

.overlay-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem;
}

.overlay-header {
    color: #FFAD60;
    font-size: 2.4rem;
}

.overlay-caption {
    color: #fff;
    font-size: 4.8rem;
    line-height: 0.8;
}

.overlay-text {
    font-size: 1.8rem;
    color: #fff;
    width: 45rem;
}

.overlay-link {
    background-color: #fff;
    padding: 0.6rem 3.6rem;
    text-decoration: none;
    color: #333;
    font-size: 2.4rem;
    border-radius: 26px;
    align-self: flex-start;
}

.overlay-video {
    width: 60rem;
}


/* ------GALLERY SECTION------ */

.gallery {
    padding: 4.8rem 1.2rem 4.8rem 1.2rem;
}

.gallery-box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 3.6rem;
}

.gallery-text-box {
    grid-column: 1/4;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    align-items: center;
}

.gallery-header {
    font-size: 2.4rem;
    color: #FFAD60;
}

.gallery-caption {
    font-size: 4.8rem;
    color: #fff;
    line-height: 0.8;
    padding-bottom: 1.2rem;
}

.gallery-text {
    font-size: 1.8rem;
    color: #fff;
    width: 70rem;
}

.gallery-img {
    width: 49rem;
    height: 35rem;
    background-position: center;
}

.gi1 {
    background-image: url("/imgs/gallery-7.jpg");
    background-size: cover;
}

.gi2 {
    background-image: url("/imgs/gallery-2.jpg");
    background-size: cover;
}

.gi3 {
    background-image: url("/imgs/gallery-3.jpg");
    background-size: cover;
}

.gi4 {
    background-image: url("/imgs/gallery-4.jpg");
    background-size: cover;
}

.gi5 {
    background-image: url("/imgs/gallery-5.jpg");
    background-size: cover;
}

.gi6 {
    background-image: url("/imgs/gallery-6.jpg");
    background-size: cover;
}


/* ------DUO SECTION------ */

.duo {
    padding: 4.8rem 1.2rem 9.6rem 1.2rem;

}

.duo-box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.duo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 140rem;
}

.duo-img {
    background-image: url("/imgs/duo.jpg");
    height: 100%;
    background-size: cover;
    background-position: bottom;
}

.duo-img-two {
    background-image: url("/imgs/duo-two.jpg");
    height: 100%;
    background-size: cover;
    background-position: bottom;
}

.duo-text-box {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    background-color: #2f343d;
    padding: 4.8rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.duo-text-box-two {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    background-color: #2d363e;
    padding: 4.8rem;
    padding-left: 12rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.duo-text-box::before {
    content: "";
    position: absolute;
    background-image: url('/imgs/shape-1.png'); /* Local image URL */
    background-size: cover; /* Make sure the image covers the whole area */
    background-position: center;
    top: 30rem;
    left: 65rem;
    opacity: 0.1;
    width: 60rem;
    height: 60rem;
    transform: translate(-50%, -50%); /* Centers the circle behind the element */
    z-index: 0;
    overflow: hidden;
}

.duo-text-box-two::before {
    content: "";
    position: absolute;
    background-image: url('/imgs/shape-1.png'); /* Local image URL */
    background-size: cover; /* Make sure the image covers the whole area */
    background-position: center;
    top: 30rem;
    left: -5rem;
    opacity: 0.1;
    width: 60rem;
    height: 60rem;
    transform: translate(-50%, -50%); /* Centers the circle behind the element */
    z-index: -1;
    overflow: hidden;
}

.duo-icon {
    font-size: 4.8rem;
    color: #FFAD60;
    position: relative;
    margin-left: 3rem;
    margin-bottom: 2.4rem;
}

.duo-icon::before {
    content: "";
    position: absolute;
    background-image: url('/imgs/laurel.png'); /* Local image URL */
    background-size: cover; /* Make sure the image covers the whole area */
    background-position: center;
    top: 4rem;
    left: 2.5rem;
    width: 10rem;
    height: 10rem;
    transform: translate(-50%, -50%); /* Centers the circle behind the element */
    z-index: 1;
}

.duo-caption {
    font-size: 2.4rem;
    color: #FFAD60;
}

.duo-header {
    font-size: 4.8rem;
    color: #fff;
    line-height: 0.8;
}

.duo-text {
    font-size: 1.8rem;
    color: #fff;
    width: 50rem;
}

.duo-link {
    background-color: #FFAD60;
    padding: 0.6rem 3.6rem;
    text-decoration: none;
    color: #fff;
    font-size: 2.4rem;
    border-radius: 26px;
    align-self: flex-start;
    z-index: 3;
}

/* ------TESTIMONIALS SECTION------ */

.testimonials {
    padding: 4.8rem 1.2rem 9.6rem 1.2rem;
}

.testimonials-box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.6rem;
}

.testimonials-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    grid-column: 1/3;
}

.testimonials-header {
    font-size: 2.4rem;
    color: #FFAD60;
}

.testimonials-caption {
    font-size: 4.8rem;
    line-height: 0.8;
    color: #fff;
}

.testimonials-item {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    width: 50rem;
    background-color: #2d363e;
    padding: 4.8rem;
}

.testimonials-icon {
    width: 5rem;
}

.testimonials-text {
    font-size: 1.8rem;
    color: #fff;
    position: relative;
}

.testimonials-text::before {
    content: "";
    position: absolute;
    background-image: url('/imgs/quote.png'); /* Local image URL */
    background-size: cover; /* Make sure the image covers the whole area */
    background-position: center;
    top: 1rem;
    left: 1rem;
    width: 10rem;
    height: 10rem;
    transform: translate(-50%, -50%); /* Centers the circle behind the element */
    z-index: 1;
}

.testimonials-author {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 15rem;
}

.testimonials-author-img {
    border-radius: 50%;
    grid-row: 1/3;
    width: 7rem;
}

.testimonials-name {
    color: #fff;
    font-size: 1.8rem;
}

.testimonials-location {
    color: #FFAD60;
    font-size: 1.2rem;
}

/* -------CTA SECTION------ */

.cta {
    padding: 4.8rem 0.6rem;
    background-color: #2f343d;
    margin-bottom: 9.6rem;
}

.cta .cta-box {
    max-width: 120rem;
    margin: 0 auto;
    letter-spacing: 0.5px;
    padding: 1.2rem;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
}

.cta-form {
    align-self: center;
}

.cta-text {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    justify-items: center;
    align-items: center;
    color: #fff;
}

.cta-title {
    font-size: 6rem;
    font-weight: 200;
    color: #fff;
    line-height: 0.8;
    text-align: center;
}

.cta-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 2.4rem;
    text-align: center;
    padding: 1.2rem;
}

.email-text,
.number-text {
    color: #FFAD60;
    text-decoration: none;
}

.cta-socials {
    align-self: center;
    justify-self: center;
    display: flex;
    gap: 6.2rem;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-box {
    border: none;
    border-bottom: 3px solid #edf2ec;
    resize: none;
    padding: 1.2rem;
}

.input-box::placeholder {
    font-family: 'Quicksand', sans-serif;
}

.message-input {
    height: 12rem;
}

.message-input::placeholder {
    font-family: 'Quicksand', sans-serif;
}

.submit-btn {
    width: auto;
    align-self: flex-end;
    padding: 0.6rem 1.2rem;
    border: none;
    background-color: #FFAD60;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 26px;
    /* border: 1px solid #0d3b66; */
}




  /* -------FOOTER SECTION------ */

  .footer {
    padding: 4.8rem;
    background-color: #23252d;
    color: #fff;

    display: grid;
    grid-template-columns: 1fr;
}

.footer-box {
    max-width: 150rem;
    margin: 0 auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.footer-logo-copy {
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 20rem;
    filter: brightness(100);
}

.copyright {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #fff;
}

.footer-socials-box {
    display: flex;
    gap: 2.4rem;
}

.footer-social {
    width: 4.8rem;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-social:hover {
    transform: scale(1.05);
}

.footer-header {
    font-size: 2.8rem;
    padding-bottom: 1.8rem;
    color: #fff;
}

.footer-details {
    font-size: 1.8rem;
}

.footer-link {
    font-size: 2.2rem;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.created-by {
    justify-self: center;
    margin-top: 5rem;
    font-size: 1.8rem;
    color:#fff;
    text-align: center;
}

.pauledward {
    text-decoration: none;
    color: #fff;
}

.footer-placeholder {
    font-size: 4.8rem;
}


.pageHeroKitchenRestoration {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/imgs/kitchen-restoration.jpg') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.pageHeroGroutRestoration {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/imgs/groutBanner.jpg') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.pageHeroVictorianRestoration {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/imgs/tiles-1.jpg') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.pageHeroQuarryRestoration {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/imgs/quarryTileBanner.jpg') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.pageHeroSlateRestoration {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/imgs/slate-1-banner.jpg') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.pageHeroTerracottaRestoration {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/imgs/terracottaBanner.jpg') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.pageHeroLimestoneRestoration {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/imgs/limestone-tiles.jpg') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.pageHeroMarbleRestoration {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/imgs/marbleBanner.jpg') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.pageHero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.pageHero-content {
    position: relative;
    max-width: 700px;
    z-index: 1;
}

.pageHero-header {
    font-size: 4.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.pageHero-text {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.pageHero-cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 2.4rem;
    color: white;
    background: #f4a261;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.pageHero-cta-button:hover {
    background: #e76f51;
}

.tileServices {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .tileServices h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff;
  }
  
  .tileServices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .tileServices-item {
    background-color: #2f343d;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s;
  }
  
  .tileServices-item:hover {
    transform: translateY(-5px);
  }
  
  .tileServices-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .tileServices h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .tileServices p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #fff;
  }
  
  .whyChooseUs {
    background-color: #2f343d;
    color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .whyChooseUs h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .whyChooseUs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .whyChooseUs-item {
    background: #23252d;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    transition: background 0.3s, transform 0.2s;
  }
  
  .whyChooseUs-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }
  
  .whyChooseUs-number {
    font-size: 30px;
    font-weight: bold;
    background: #FFAD60;
    color: #333;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .whyChooseUs-content {
    text-align: left;
  }
  
  .whyChooseUs h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  
  .whyChooseUs p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .serviceArea {
    background-color: #2d363e;
    padding: 2.4rem 0.6rem;
  }
  
  .serviceArea-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .serviceArea-text {
    flex: 1;
    min-width: 300px;
  }
  
  .serviceArea h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .serviceArea p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .serviceArea-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .serviceArea-list li {
    font-size: 18px;
    padding: 8px 0;
    color: #fff;
    display: flex;
    align-items: center;
  }
  
  .serviceArea-list li::before {
    content: "📍";
    margin-right: 8px;
  }
  
  .serviceArea-contact a {
    color: #f4a261;
    font-weight: bold;
    text-decoration: none;
  }
  
  .serviceArea-contact a:hover {
    text-decoration: underline;
  }
  
  .serviceArea-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .serviceArea-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .serviceMap {
    text-align: center;
    padding: 40px 20px;
  }
  
  .serviceMap h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .serviceMap iframe {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .serviceMap p {
    margin-top: 10px;
    font-size: 16px;
  }
  
  .serviceMap a {
    color: #f4a261;
    text-decoration: none;
    font-weight: bold;
  }
  
  .serviceMap a:hover {
    text-decoration: underline;
  }
  
  .faqSection {
    max-width: 900px;
    padding: 2.4rem 0.6rem 4.8rem;
    margin: 0 auto;
    text-align: center;
  }
  
  .faqSection h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  .faq-container {
    text-align: left;
  }
  
  .faq-item {
    background: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
  }
  
  .faq-question {
    width: 100%;
    background: #f4a261;
    color: #fff;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question span {
    font-size: 24px;
    transition: 0.3s;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background: #2f343d;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    color: #fff;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
  }
  
  .faq-item.active .faq-question span {
    transform: rotate(45deg);
  }
  
  .victorianIntro {
    padding: 2.4rem 0.6rem;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .victorianIntro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .victorianIntro h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
  }
  
  .victorianIntro p {
    font-size: 18px;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .victorianIntro strong {
    color: #FFAD60;
  }

  .maintenance-wrapper {
    background-color: #23252d;
    padding: 70px 20px;
    font-family: 'Georgia', serif;
  }
  
  .maintenance-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
  }
  
  .maintenance-heading {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .maintenance-intro {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.7;
    text-align: center;
  }
  
  .maintenance-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .maintenance-list li {
    background: #2d363e;
    border-left: 5px solid #f4a261;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  }
  
  .maintenance-list h3 {
    margin-bottom: 10px;
    color: #FFAD60;
    font-size: 20px;
  }
  
  .maintenance-list p {
    margin: 0;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
  }
  
  .maintenance-cta {
    margin-top: 40px;
    font-size: 17px;
    text-align: center;
    color: #fff;
  }
  
  .maintenance-cta a {
    color: #FFAD60;
    text-decoration: underline;
    font-weight: bold;
  }
  
  