* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-repeat: no-repeat !important;
    background-position: center center;
}
body {
    background-color: #F4F6F6;
    color: #161616;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Header --- */
.header {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #161616 !important;
}
.slide-header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center right;
    background-size: 105%;
}

/* --- Navigation --- */
nav {
    display: flex;
    padding: 15px 6%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
    border-bottom: 3px solid transparent;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
nav img {
    width: 70px;
}
.nav-links {
    flex: 1;
    text-align: left;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #6bc2bf;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after {
    width: 100%;
}
nav.scrolled {
    background: #6bc2bf;
    border-bottom: 3px solid #53a5a2;
}
nav.scrolled .nav-links ul li::after {
    background: rgba(255, 255, 255, 0.7);
}
nav .fa {
    display: none;
}
.mobile-nav-phone {
    display: none !important;
}

@media (max-width: 700px) {
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: #6bc2bf;
        height: 100vh;
        width: 250px;
        top: 0;
        right: -250px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    nav > .fa {
        color: #fff;
    }
    nav.scrolled > .fa {
        color: #fff;
    }
    .nav-links ul li a {
        color: #fff;
    }
    .nav-links ul {
        padding: 30px 20px;
    }
    .nav-links .toggle-list-item {
        padding: 8px 0;
    }
    .nav-links .theme-switch-wrapper {
        margin-left: 12px;
    }
    .nav-links .theme-switch {
        height: 24px;
        width: 44px;
    }
    .nav-links .toggle-slider:before {
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
    }
    .nav-links input:checked + .toggle-slider:before {
        transform: translateX(20px);
    }
    .nav-links .mobile-nav-phone {
        display: block !important;
        padding: 10px 0;
        margin-top: 15px;
    }
    .nav-links .mobile-nav-phone .nav-phone-btn {
        background: #ffffff;
        color: #6bc2bf !important;
        border: 2px solid #ffffff;
        display: inline-block;
        width: 100%;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
    }
}

html.dark-mode .nav-links .mobile-nav-phone .nav-phone-btn {
    background: #222222;
    color: #7dd6d3 !important;
    border: 2px solid #7dd6d3;
}

/* --- Hero Text Box --- */
.text-box {
    width: 50%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    text-align: left;
}
.text-box h1 {
    font-size: 82px;
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 22px;
    color: #fff;
}
.hero-btn {
    display: inline-block;
    text-decoration-skip-ink: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover {
    border: 1px solid #6bc2bf;
    background: #6bc2bf;
    transition: 1s;
}

@media (max-width: 700px) {
    .text-box h1 {
        font-size: 64px;
    }
}

/* --- Services --- */
.service {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1 {
    font-size: 46px;
    font-weight: 600;
}
p {
    color: #777;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-around;
}
.service-col {
    flex-basis: 30%;
    background: #FFFFFF;
    border-radius: 0;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    font-size: 28px;
}
.service-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
    .houses .row {
        align-items: center;
    }
}

/* --- Houses --- */
.houses {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.houses .row {
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.houses-col {
    flex-basis: 32%;
    border-radius: 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.houses-col:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px #6bc2bf;
}
html.dark-mode .houses-col {
    border-color: #6bc2bf;
    box-shadow: 6px 6px 0px #6bc2bf;
}
html.dark-mode .houses-col:hover {
    box-shadow: 3px 3px 0px #6bc2bf;
}
.houses-col a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.houses-col img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.layer {
    background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: background 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}
.layer i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.layer:hover, .layer.active {
    opacity: 1;
}
.layer:hover i, .layer.active i {
    opacity: 1;
}

/* --- Project Split-Screen Rows --- */
.project-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
}
.project-row .project-image {
    flex: 0 0 50%;
}
.project-row .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}
.project-row .project-text {
    flex: 0 0 50%;
    background: #FFFFFF;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.project-row .project-text h3 {
    text-align: left;
    margin-bottom: 20px;
}
.project-row .project-text p {
    margin-bottom: 30px;
}
.project-row.reverse {
    flex-direction: row-reverse;
}
html.dark-mode .project-row .project-text {
    background: #222222;
}

@media (max-width: 700px) {
    .project-row,
    .project-row.reverse {
        flex-direction: column;
    }
}

/* --- Feedback --- */
.feedback {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.feedback-col {
    flex-basis: 30%;
    border-radius: 0;
    margin-bottom: 5%;
    text-align: left;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.feedback-col img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 0;
}
.feedback-col p {
    padding: 0;
}
.feedback-col h3 {
    margin-top: 15px;
    text-align: left;
}
.feedback-col .fa {
    color: #6bc2bf;
}
.feedback-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
.largefeedback-col {
    flex-basis: 88%;
    border-radius: 0;
    margin-bottom: 5%;
    text-align: left;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.largefeedback-col img {
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 0;
}
.largefeedback-col p {
    padding: 0;
}
.largefeedback-col h3 {
    margin-top: 15px;
    text-align: left;
}
.largefeedback-col .fa {
    color: #6bc2bf;
}
.largefeedback-col:hover {
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {
    .feedback-col img {
        margin-left: 0px;
        margin-right: 15px;
    }
    .largefeedback-col img {
        margin-left: 0px;
        margin-right: 15px;
    }
}

/* --- CTA Action Block --- */
.action {
    margin: 100px auto;
    width: 80%;
    display: flex;
    min-height: 400px;
}
.action-left {
    flex: 0 0 50%;
    background: #161616;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
}
.action-right {
    flex: 0 0 50%;
    background-image: url(banners/car-banner.jpg);
    background-position: center;
    background-size: cover;
}
.action h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media (max-width: 700px) {
    .action {
        flex-direction: column;
    }
    .action-left {
        flex: none;
        padding: 40px 20px;
    }
    .action-right {
        flex: none;
        min-height: 200px;
    }
    .action h1 {
        font-size: 24px;
    }
}

/* --- Footer --- */
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background: #E9ECEF;
}
.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 24px;
}
.footer p {
    text-align: center;
    font-size: 18px;
}
.footer p a {
    color: #6bc2bf;
    text-decoration: none;
    font-weight: 600;
}
.footer p a:hover {
    text-decoration: underline;
}
.icons .fa {
    color: #6bc2bf;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    font-size: 22px;
}
.policies {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
}
.policies a {
    color: #6bc2bf;
    font-size: 16px;
    flex: 1;
}

/* --- Sub-Header (Interior Pages) --- */
.sub-header {
    background-color: #161616;
    height: 35vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 4px solid #6bc2bf;
    position: relative;
}
.sub-header h1 {
    display: inline-block;
    color: #ffffff;
    font-size: 48px;
    letter-spacing: 0.05em;
    padding: 24px 48px;
    border: 2px solid #ffffff;
    box-shadow: 8px 8px 0px #6bc2bf;
    background-color: #161616;
    margin-top: 50px;
}
html.dark-mode .sub-header {
    background-color: #161616;
}
html.dark-mode .sub-header h1 {
    border-color: #ffffff;
}

@media (max-width: 700px) {
    .sub-header h1 {
        font-size: 28px;
        padding: 16px 24px;
        box-shadow: 5px 5px 0px #6bc2bf;
    }
}

/* --- About Page --- */
.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col {
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img {
    width: 100%;
}
.about-col h1 {
    padding-top: 0;
}
.about-col p {
    padding: 15px 0 25px;
}
.red-btn {
    border: 1px solid #6bc2bf;
    background: transparent;
    color: #6bc2bf;
}
.red-btn:hover {
    color: #fff;
}

/* --- Blog --- */
.blog-content {
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left {
    flex-basis: 65%;
}
.blog-left img {
    width: 100%;
}
.blog-left h2 {
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p {
    color: #999;
    padding: 0;
}
.blog-right {
    flex-basis: 32%;
}
.blog-right h3 {
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}
.comment-box {
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}
.comment-box h3 {
    text-align: left;
}
.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button {
    margin: 10px 0;
}

/* --- Contact Page --- */
.location {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe {
    width: 100%;
}
.contact-us {
    width: 80%;
    margin: auto;
}
.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
    margin-left: 12px;
}
.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa {
    font-size: 28px;
    color: #6bc2bf;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p {
    padding: 0;
}
.contact-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* --- Individual House Pages --- */
.housesexpanded {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.housesexpanded-col {
    flex-basis: 32%;
    border-radius: 0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    margin-right: 15px;
    font-size: 16px;
}
.housesexpanded-col img {
    width: 100%;
    display: block;
}
.housesexpanded-col a {
    display: block;
    position: relative;
    cursor: pointer;
}
.layerexpanded {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: 0.5s;
}
.layerexpanded:hover, .layerexpanded.active {
    background: rgba(94,188,176,0.7);
}
.layerexpanded span {
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 2em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    text-align: center;
    text-decoration: underline;
    margin: 0;
}
.layerexpanded:hover span, .layerexpanded.active span {
    opacity: 1;
}
.rowexpanded {
    margin-top: 5%;
    display: flex;
    justify-content: space-around;
}
.rowexpandedver {
    margin-top: 5%;
    display: flex;
    justify-content: space-around;
}

/* House Sub-Headers */
.mooresub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/moore-mansion.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.villasub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/villa-on-the-bay.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.oaksub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/bayoaks-renovation.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.vorsub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/ivory-manor.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.lightsub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/modern-lighthouse.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.creeksub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/creekside-haven.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.watersub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/waterford-estate.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.clearsub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/clear-creek-enclave.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.vistasub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/bay-vista.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.whispsub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(30,15,35,0.7),rgba(30,15,35,0.7)),url(banners/bay-vista.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}
.mooresub-header h1,
.villasub-header h1,
.oaksub-header h1,
.vorsub-header h1,
.lightsub-header h1,
.creeksub-header h1,
.watersub-header h1,
.clearsub-header h1,
.vistasub-header h1,
.whispsub-header h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    margin: 0;
}

@media (max-width: 700px) {
    .mooresub-header h1,
    .villasub-header h1,
    .oaksub-header h1,
    .vorsub-header h1,
    .lightsub-header h1,
    .creeksub-header h1,
    .watersub-header h1,
    .clearsub-header h1,
    .vistasub-header h1,
    .whispsub-header h1 {
        font-size: 48px;
    }
    .rowexpanded {
        flex-direction: column;
    }
}

/* --- Terms & Privacy Pages --- */
.terms-and-conditions {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.privacy-policy {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

/* --- Image Slider --- */
.image-slider {
    width: 100%;
    max-width: 70em;
    height: 100%;
    min-height: 30em;
    max-height: 75vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F4F6F6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1000;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 1em;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.image-slider.show {
    opacity: 1;
    visibility: visible;
}
.close-slider {
    background: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 4em;
    height: 4em;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.close-slider:hover {
    background: #6bc2bf;
    color: #fff;
}
.caption {
    background: linear-gradient(rgba(0,0,0,0),#000);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4em 1em 2em 1em;
    text-align: center;
}
.caption h1 {
    margin: 0;
    color: #fff;
}
.caption p {
    color: #8a8a8a;
}
.arrow-left, .arrow-right {
    background: #fff;
    position: absolute;
    top: 50%;
    width: 4em;
    height: 4em;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(-50%);
}
.arrow-left {
    left: 1em;
}
.arrow-right {
    right: 1em;
}
.arrow-left:hover, .arrow-right:hover {
    background: #6bc2bf;
    color: #fff;
}
.slider-nav {
    display: flex;
    gap: 0.5em;
}
.image-fade {
    animation: imgFade 0.5s ease-in-out;
}
@keyframes imgFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* --- Slide Animations --- */
.slide-1, .slide-2, .slide-3, .slide-4 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
.slide-1 {
    object-fit: contain !important;
    object-position: center center !important;
    animation: fade1 28s infinite;
}
.slide-2, .slide-3, .slide-4 {
    object-fit: cover !important;
    object-position: center center !important;
}
.slide-2 {
    animation: fade2 28s infinite;
}
.slide-3 {
    animation: fade3 28s infinite;
}
.slide-4 {
    animation: fade4 28s infinite;
}
.slide-1h, .slide-2h, .slide-3h, .slide-4h {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
.slide-1h {
    animation: fade1 28s infinite;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
.slide-2h {
    animation: fade2 28s infinite;
    background-size: cover !important;
    background-position: center center !important;
}
.slide-3h {
    animation: fade3 28s infinite;
    background-size: cover !important;
    background-position: center center !important;
}
.slide-4h {
    animation: fade4 28s infinite;
    background-size: cover !important;
    background-position: center center !important;
}
@keyframes fade1 {
    0%, 15% { opacity: 1; }
    25%, 90% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fade2 {
    0%, 15% { opacity: 0; }
    25%, 40% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@keyframes fade3 {
    0%, 40% { opacity: 0; }
    50%, 65% { opacity: 1; }
    75%, 100% { opacity: 0; }
}
@keyframes fade4 {
    0%, 65% { opacity: 0; }
    75%, 90% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes textFadeSync {
    0%, 15% { opacity: 0; }
    25%, 90% { opacity: 1; }
    100% { opacity: 0; }
}

/* --- Swiper / Expanded Slider --- */
.image-slider-ex {
    width: 90%;
    max-width: 70em;
    padding: 1em;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F4F6F6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1000;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
}
.swiper-wrapper {
    display: flex;
    align-items: center;
}
.image-slider-ex.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0s linear 0s;
}
.hidden {
    display: none;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.swiper-slide img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    will-change: transform;
}
.swiper-slide img.zoomed {
    cursor: zoom-out;
    transform-origin: center;
    transform: scale(2);
}
.swiper-slide img.zoomed:active {
    cursor: zoom-out;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    color: #6bc2bf;
    transition: color 0.3s ease;
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
    color: #7dd6d3;
}
.swiper .swiper-pagination-bullet-active {
    background: #6bc2bf;
}

/* --- Slider Controls --- */
.slider-controls-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1100;
    display: flex;
    gap: 0.5rem;
}
.slider-close-button {
    position: static;
    font-size: 1.5rem;
    color: #6bc2bf;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.slider-close-button:hover {
    background-color: #6bc2bf;
    color: #ffffff;
}
.slider-download-button {
    font-size: 1.2rem;
    color: #6bc2bf;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}
.slider-download-button:hover {
    background-color: #6bc2bf;
    color: #ffffff;
}
html.dark-mode .slider-download-button {
    background-color: rgba(26, 26, 26, 0.8);
    color: #e0e0e0;
}
html.dark-mode .slider-download-button:hover {
    background-color: #6bc2bf;
    color: #ffffff;
}

/* --- Form Validation --- */
.error-message {
    display: none;
    color: red;
    font-size: 0.9em;
    margin-bottom: 5px;
}

/* --- Theme Toggle --- */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}
.theme-switch input {
    display: none;
}
.toggle-slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}
.toggle-slider:before {
    font-family: 'FontAwesome';
    content: '\f186';
    color: #000000;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 4px;
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}
input:checked + .toggle-slider {
    background-color: #1a1a1a;
}
input:checked + .toggle-slider:before {
    content: '\f185';
    color: #ffffff;
    transform: translateX(26px);
}
.toggle-slider.round {
    border-radius: 0;
}
.toggle-slider.round:before {
    border-radius: 0;
}

@media (min-width: 701px) {
    .nav-links ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .theme-switch-wrapper {
        margin-left: 0;
    }
    .theme-switch {
        height: 24px;
        width: 44px;
    }
    .toggle-slider:before {
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
    }
    input:checked + .toggle-slider:before {
        transform: translateX(20px);
    }
}

/* --- Dark Mode --- */
html.dark-mode {
    background-color: #161616;
    color: #e0e0e0;
}
html.dark-mode body {
    background-color: #161616;
    color: #e0e0e0;
}
html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4 {
    color: #ffffff;
}
html.dark-mode p {
    color: #ababab;
}
html.dark-mode .service-col,
html.dark-mode .feedback-col,
html.dark-mode .largefeedback-col {
    background: #222222;
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.05);
}
html.dark-mode .footer {
    background: #111111;
}
html.dark-mode .footer p a {
    color: #7dd6d3;
}
html.dark-mode nav.scrolled {
    background: #161616;
    border-bottom: 3px solid #6bc2bf;
}
html.dark-mode nav.scrolled .nav-links ul li a {
    color: #fff;
}
html.dark-mode .nav-links ul li a {
    color: #fff;
}
html.dark-mode nav .fa {
    color: #fff;
}
html.dark-mode .policies a {
    color: #7dd6d3;
}
html.dark-mode .image-slider-ex {
    background-color: #222222;
}
html.dark-mode .slider-close-button {
    background-color: rgba(26, 26, 26, 0.8);
    color: #e0e0e0;
}
html.dark-mode .slider-close-button:hover {
    background-color: #6bc2bf;
    color: #ffffff;
}
html.dark-mode .swiper .swiper-button-prev,
html.dark-mode .swiper .swiper-button-next {
    color: #7dd6d3;
}
html.dark-mode .swiper .swiper-button-prev:hover,
html.dark-mode .swiper .swiper-button-next:hover {
    color: #6bc2bf;
}
html.dark-mode .swiper .swiper-pagination-bullet-active {
    background: #7dd6d3;
}

/* --- Video Feature --- */
.video-feature {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.video-container {
    margin-top: 20px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
}
.video-feature video {
    width: 100%;
    display: block;
}
html.dark-mode .video-container {
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.05);
}

/* --- Download All Button --- */
.download-all-container {
    text-align: center;
    margin: 40px 0 20px 0;
}
.download-all-btn {
    display: inline-block;
    text-decoration: none;
    color: #6bc2bf;
    border: 1px solid #6bc2bf;
    padding: 12px 34px;
    font-size: 16px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
}
.download-all-btn .fa {
    margin-right: 8px;
}
.download-all-btn:hover {
    background: #6bc2bf;
    color: #ffffff;
}
html.dark-mode .download-all-btn {
    color: #7dd6d3;
    border-color: #7dd6d3;
}
html.dark-mode .download-all-btn:hover {
    background: #7dd6d3;
    color: #161616;
}

/* --- Sort Controls --- */
.sort-controls {
    text-align: center;
    margin-bottom: 40px;
}
.sort-btn {
    border: 1px solid #6bc2bf;
    background: transparent;
    color: #6bc2bf;
    padding: 10px 24px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 0;
    transition: all 0.3s ease;
}
.sort-btn:hover, .sort-btn.active {
    background: #6bc2bf;
    color: #fff;
}

@media (max-width: 700px) {
    .sort-controls {
        display: flex;
        flex-direction: column;
    }
    .sort-btn {
        margin: 5px 0;
    }
}

/* --- Before/After Slider --- */
.ba-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: inset(0 50% 0 0);
    pointer-events: none;
    transition: clip-path 0.1s ease-out;
}
.ba-before-wrapper img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    will-change: transform;
    cursor: zoom-in;
}
.ba-before-wrapper img.zoomed {
    cursor: zoom-out;
    transform-origin: center;
    transform: scale(2);
}
.ba-slider {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 500px;
    z-index: 20;
    cursor: col-resize;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0;
    height: 6px;
    outline: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.ba-slider:hover {
    opacity: 1;
}
.ba-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 3px solid #6bc2bf;
    border-radius: 0;
    cursor: col-resize;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    margin-top: -12px;
}
.ba-slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background: #fff;
    border: 3px solid #6bc2bf;
    border-radius: 0;
    cursor: col-resize;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    box-sizing: border-box;
    margin-top: -12px;
}
html.dark-mode .ba-slider {
    background: rgba(26, 26, 26, 0.5);
}
html.dark-mode .ba-slider::-webkit-slider-thumb {
    background: #222222;
    border-color: #7dd6d3;
}
html.dark-mode .ba-slider::-moz-range-thumb {
    background: #222222;
    border-color: #7dd6d3;
}
.swiper-slide img.zoom-disabled {
    cursor: default;
}
.ba-before-wrapper img.zoom-disabled {
    cursor: default;
}

/* --- Before/After Labels --- */
.ba-label-container {
    position: absolute;
    bottom: 5.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 20;
}
.ba-label {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
html.dark-mode .ba-label {
    color: #fff;
    background: rgba(26, 26, 26, 0.7);
}

/* --- Before/After Badge --- */
.ba-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: #6bc2bf;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
html.dark-mode .ba-badge {
    background: #7dd6d3;
    color: #161616;
}

/* --- Click-to-Call Nav Button --- */
.nav-phone-btn {
    display: inline-block;
    background: #6bc2bf;
    color: #fff;
    padding: 9px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid #6bc2bf;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.nav-phone-btn:hover {
    background: #53a5a2;
    border-color: #53a5a2;
}
nav.scrolled .nav-phone-btn {
    background: #fff;
    color: #6bc2bf;
    border-color: #fff;
}
nav.scrolled .nav-phone-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
}
html.dark-mode nav.scrolled .nav-phone-btn {
    background: #6bc2bf;
    color: #fff;
    border-color: #6bc2bf;
}
html.dark-mode nav.scrolled .nav-phone-btn:hover {
    background: #53a5a2;
    border-color: #53a5a2;
}

@media (max-width: 700px) {
    .nav-phone-btn {
        display: none;
    }
}

/* --- Trust Badges Strip --- */
.trust-strip {
    width: 100%;
    background: #fff;
    padding: 22px 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 3px solid #6bc2bf;
}
.trust-item {
    flex: 1;
    text-align: center;
    padding: 8px 15px;
    border-right: none;
}
.trust-item:first-child {
    border-right: 1px solid #E9ECEF;
}
.trust-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #161616;
}
html.dark-mode .trust-strip {
    background: #222222;
}
html.dark-mode .trust-item:first-child {
    border-right-color: #333333;
}
html.dark-mode .trust-label {
    color: #e0e0e0;
}

@media (max-width: 700px) {
    .trust-strip {
        flex-direction: column;
        padding: 20px 6%;
    }
    .trust-item {
        border-right: none;
        border-bottom: 1px solid #E9ECEF;
        padding: 14px 10px;
        width: 100%;
    }
    .trust-item:last-child {
        border-bottom: none;
    }
    html.dark-mode .trust-item {
        border-bottom-color: #333333;
    }
}

/* --- How It Works --- */
.how-it-works {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}
.how-row {
    margin-top: 5%;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.how-step {
    flex-basis: 30%;
    background: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
    transition: 0.5s;
}
.how-step:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
.how-icon {
    width: 70px;
    height: 70px;
    background: #6bc2bf;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.how-icon .fa {
    color: #fff;
    font-size: 28px;
}
.how-step h3 {
    margin-bottom: 15px;
}
html.dark-mode .how-step {
    background: #222222;
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.05);
}
html.dark-mode .how-step:hover {
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.1);
}

@media (max-width: 700px) {
    .how-row {
        flex-direction: column;
    }
}

/* --- Service Areas --- */
.service-areas {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    align-items: stretch;
    min-height: 420px;
}
.service-areas-left {
    flex: 0 0 50%;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-areas-left h1 {
    text-align: left;
    margin-bottom: 30px;
}
.areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.areas-list li {
    padding: 14px 0;
    font-size: 18px;
    color: #777;
    font-weight: 300;
    border-bottom: 1px solid #999999;
    display: flex;
    align-items: center;
}
.areas-list li::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #6bc2bf;
    margin-right: 15px;
    flex-shrink: 0;
}
.areas-list li:last-child {
    border-bottom: none;
}
.service-areas-right {
    flex: 0 0 50%;
    min-height: 400px;
}
.service-areas-right iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
html.dark-mode .areas-list li {
    color: #ababab;
    border-bottom-color: #555555;
}

@media (max-width: 700px) {
    .service-areas {
        flex-direction: column;
    }
    .service-areas-left {
        padding-right: 0;
        padding-bottom: 40px;
    }
    .service-areas-right {
        min-height: 300px;
    }
}

/* --- Meet the Owner --- */
.meet-owner {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}
.meet-owner-left {
    flex: 1;
    min-width: 320px;
}
.meet-owner-left h1 {
    text-align: left;
    margin-bottom: 20px;
}
.meet-owner-left p {
    padding: 0;
    margin-bottom: 20px;
}
.meet-owner-right {
    flex: 1;
}
.meet-owner-right img {
    width: 100%;
    display: block;
    border-radius: 0;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
}
.about-btn {
    border-color: #6bc2bf;
    color: #6bc2bf;
    margin-top: 10px;
    display: inline-block;
}
.about-btn:hover {
    background: #6bc2bf;
    color: #fff;
}
html.dark-mode .meet-owner-right img {
    border-color: #6bc2bf;
    box-shadow: 6px 6px 0px #6bc2bf;
}
html.dark-mode .about-btn {
    color: #7dd6d3;
    border-color: #7dd6d3;
}
html.dark-mode .about-btn:hover {
    background: #7dd6d3;
    color: #161616;
}

@media (max-width: 700px) {
    .meet-owner {
        flex-direction: column;
        gap: 30px;
    }
}

/* --- Why Choose Us --- */
.why-choose-us {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 60px;
}
.why-row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.why-card {
    flex: 1;
    min-width: 240px;
    background: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px #6bc2bf;
}
.why-card h3 {
    margin-bottom: 15px;
}
html.dark-mode .why-card {
    background: #222222;
    border-color: #6bc2bf;
    box-shadow: 6px 6px 0px #6bc2bf;
}
html.dark-mode .why-card:hover {
    box-shadow: 3px 3px 0px #6bc2bf;
}

@media (max-width: 700px) {
    .why-row {
        flex-direction: column;
    }
}

/* --- About Page CTA --- */
.about-cta {
    width: 100%;
    background: #161616;
    text-align: center;
    padding: 80px 20px;
    margin-top: 80px;
    box-sizing: border-box;
}
.about-cta h1 {
    color: #fff;
    margin-bottom: 30px;
}
html.dark-mode .about-cta {
    background: #111111;
}

@media (max-width: 700px) {
    .about-cta h1 {
        font-size: 28px;
    }
}

/* --- Contact Info Section --- */
.contact-info-section {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}
.contact-info-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}
.contact-info-card {
    flex: 1;
    background: #fff;
    padding: 50px 30px;
    box-sizing: border-box;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-info-card:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}
.contact-info-card h3 {
    margin: 20px 0 15px;
}
.contact-info-card .hero-btn {
    margin: 20px 0 15px;
}
.contact-email-link {
    color: #6bc2bf;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}
.contact-email-link:hover {
    text-decoration: underline;
}
.contact-detail-text {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #161616;
    overflow-wrap: break-word;
    word-break: break-word;
}
html.dark-mode .contact-detail-text {
    color: #ffffff;
}
html.dark-mode .contact-info-card {
    background: #222222;
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.05);
}
html.dark-mode .contact-info-card:hover {
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.1);
}
html.dark-mode .contact-email-link {
    color: #7dd6d3;
}

@media (max-width: 700px) {
    .contact-info-grid {
        flex-direction: column;
    }
}

/* --- Meet the Team (Contact Page) --- */
.contact-team {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.contact-team-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-team-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px #6bc2bf;
}
.contact-team-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.contact-team-card-body {
    padding: 28px 28px 32px;
}
.contact-team-card-body h3 {
    text-align: left;
    margin-bottom: 12px;
    color: #161616;
}
.contact-team-card-body p {
    padding: 0;
    line-height: 1.6;
}
html.dark-mode .contact-team-card {
    background-color: #222222;
    border-color: #6bc2bf;
    box-shadow: 6px 6px 0px #6bc2bf;
}
html.dark-mode .contact-team-card:hover {
    box-shadow: 3px 3px 0px #6bc2bf;
}
html.dark-mode .contact-team-card-body h3 {
    color: #ffffff;
}

@media (max-width: 700px) {
    .contact-team {
        flex-direction: column;
        margin: 40px auto 0;
    }
}

/* --- Contact Page Layout --- */
.contact-main {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto 80px;
    display: flex;
    align-items: stretch;
    gap: 24px;
}
.contact-panel {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: #fff;
    padding: 30px 28px;
    border-radius: 0;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    flex: 1;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px #6bc2bf;
}
.contact-card-icon {
    width: 56px;
    height: 56px;
    background: #6bc2bf;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.contact-card-icon .fa {
    color: #fff;
    font-size: 22px;
}
.contact-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.contact-card-body h3 {
    text-align: left;
    margin: 0;
    font-size: 20px;
}
.contact-card-body p {
    padding: 0;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    opacity: 0.8;
}
.contact-card-body .contact-email-link {
    font-size: 16px;
}
.contact-card-body .home2-btn {
    font-size: 17px;
    margin-top: 4px;
}
.contact-card-body .solid-btn {
    margin-top: 4px;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 0;
}
.contact-map {
    flex: 1;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
    min-height: 520px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 520px;
}
html.dark-mode .contact-card {
    background: #222222;
    border-color: #6bc2bf;
    box-shadow: 6px 6px 0px #6bc2bf;
}
html.dark-mode .contact-card:hover {
    box-shadow: 3px 3px 0px #6bc2bf;
}
html.dark-mode .contact-map {
    background-color: #222222;
    border-color: #6bc2bf;
    box-shadow: 6px 6px 0px #6bc2bf;
}

@media (max-width: 700px) {
    .contact-main {
        flex-direction: column;
        margin: 40px auto 60px;
        gap: 20px;
    }
    .contact-map {
        min-height: 300px;
    }
    .contact-map iframe {
        min-height: 300px;
    }
    .contact-card {
        padding: 20px;
    }
}

/* --- Solid Button --- */
.solid-btn {
    display: inline-block;
    background: #6bc2bf;
    color: #fff;
    padding: 12px 34px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}
.solid-btn:hover {
    background: #53a5a2;
    color: #fff;
}
html.dark-mode .solid-btn {
    background: #6bc2bf;
    color: #fff;
}
html.dark-mode .solid-btn:hover {
    background: #53a5a2;
}

/* --- Home2 --- */
.home2-section {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}
.home2-grid-3 {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}
.home2-card {
    flex: 1;
    background-color: #ffffff;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
    padding: 36px 28px;
    box-sizing: border-box;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home2-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px #6bc2bf;
}
.home2-card-icon {
    width: 56px;
    height: 56px;
    background: #6bc2bf;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.home2-card-icon .fa {
    color: #fff;
    font-size: 24px;
}
.home2-card h3 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 12px;
    color: #161616;
}
.home2-card p {
    padding: 0;
    line-height: 1.6;
}
.home2-stars {
    margin-bottom: 14px;
}
.home2-stars .fa {
    color: #6bc2bf;
    font-size: 16px;
    margin-right: 1px;
}
.home2-testimonial-attr {
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #161616;
    padding: 0;
}
html.dark-mode .home2-testimonial-attr {
    color: #e0e0e0;
}
.home2-text-box {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    width: 46%;
    color: #fff;
    text-align: left;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 8px 8px 0px #6bc2bf;
    padding: 44px 48px;
    background: rgba(22, 22, 22, 0.45);
    box-sizing: border-box;
    animation: textFadeSync 28s infinite;
}
.home2-text-box h1 {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.home2-text-box p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    margin: 0 0 30px;
    line-height: 1.4;
}
html.dark-mode .home2-text-box p {
    color: rgba(255, 255, 255, 0.9);
}
.home2-btn {
    display: inline-block;
    background: #ffffff;
    color: #161616;
    padding: 14px 38px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #161616;
    box-shadow: 4px 4px 0px #6bc2bf;
    cursor: pointer;
    transition: all 0.2s ease;
}
.home2-btn:hover {
    background: #161616;
    color: #ffffff;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #6bc2bf;
}
.home2-projects {
    margin-top: 40px;
    text-align: left;
}
.home2-project {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
    margin-bottom: 30px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home2-project:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px #6bc2bf;
}
.home2-project.reverse {
    flex-direction: row-reverse;
}
.home2-project-image {
    flex: 0 0 50%;
}
.home2-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}
.home2-project-text {
    flex: 0 0 50%;
    background-color: #ffffff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
}
.home2-project-text h3 {
    text-align: left;
    font-size: 22px;
    margin-bottom: 16px;
    color: #161616;
}
.home2-project-text p {
    padding: 0;
    margin-bottom: 28px;
}
.home2-areas-wrapper {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    border: 2px solid #161616;
    box-shadow: 6px 6px 0px #6bc2bf;
    min-height: 380px;
    margin-top: 40px;
    overflow: hidden;
}
.home2-areas-left {
    flex: 0 0 40%;
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.home2-areas-right {
    flex: 1;
}
.home2-areas-right iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 380px;
}
.home2-cta-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 80px;
}
.home2-cta {
    background-color: #ffffff;
    border: 2px solid #161616;
    box-shadow: 8px 8px 0px #6bc2bf;
    text-align: center;
    padding: 80px 40px;
    box-sizing: border-box;
    width: 100%;
}
.home2-cta h1 {
    color: #161616;
    margin-bottom: 30px;
    padding: 0;
}
html.dark-mode .home2-card,
html.dark-mode .home2-project {
    background-color: #222222;
    border-color: #6bc2bf;
    box-shadow: 6px 6px 0px #6bc2bf;
}
html.dark-mode .home2-card:hover,
html.dark-mode .home2-project:hover {
    box-shadow: 3px 3px 0px #6bc2bf;
}
html.dark-mode .home2-card h3,
html.dark-mode .home2-project-text h3 {
    color: #ffffff;
}
html.dark-mode .home2-project-text {
    background-color: #222222;
}
html.dark-mode .home2-areas-wrapper {
    background-color: #222222;
    border-color: #6bc2bf;
    box-shadow: 6px 6px 0px #6bc2bf;
}
html.dark-mode .home2-areas-left {
    background: #222222;
}
html.dark-mode .home2-cta {
    background-color: #161616;
    border-color: #6bc2bf;
    box-shadow: 8px 8px 0px #6bc2bf;
}
html.dark-mode .home2-cta h1 {
    color: #ffffff;
}
html.dark-mode .home2-cta h2 {
    color: #ffffff !important;
}
html.dark-mode .home2-cta p {
    color: #ababab !important;
}
html.dark-mode .home2-btn {
    background: #161616;
    color: #ffffff;
    border: 2px solid #6bc2bf;
    box-shadow: 4px 4px 0px #6bc2bf;
}
html.dark-mode .home2-btn:hover {
    background: #ffffff;
    color: #161616;
    border-color: #ffffff;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #6bc2bf;
}

@media (max-width: 700px) {
    .home2-section {
        padding: 60px 0;
    }
    .home2-grid-3 {
        flex-direction: column;
    }
    .home2-text-box {
        width: 88%;
        left: 6%;
        padding: 24px 20px;
        transform: translateY(-50%);
    }
    .home2-text-box h1 {
        font-size: 48px;
    }
    .home2-project,
    .home2-project.reverse {
        flex-direction: column;
    }
    .home2-areas-wrapper {
        flex-direction: column;
    }
    .home2-areas-left {
        padding: 30px 24px;
    }
    .home2-areas-right iframe {
        min-height: 280px;
    }
    .home2-cta {
        padding: 50px 24px;
    }
    .home2-cta h1 {
        font-size: 28px;
    }
}

/* --- Jitter Fix --- */
.home2-card:has(.home2-btn):hover,
.home2-card:has(.solid-btn):hover,
.home2-project:has(.home2-btn):hover,
.home2-project:has(.solid-btn):hover,
.contact-card:has(.home2-btn):hover,
.contact-card:has(.solid-btn):hover {
    transform: none;
    box-shadow: 6px 6px 0px #6bc2bf;
}
html.dark-mode .home2-card:has(.home2-btn):hover,
html.dark-mode .home2-card:has(.solid-btn):hover,
html.dark-mode .home2-project:has(.home2-btn):hover,
html.dark-mode .home2-project:has(.solid-btn):hover,
html.dark-mode .contact-card:has(.home2-btn):hover,
html.dark-mode .contact-card:has(.solid-btn):hover {
    transform: none;
    box-shadow: 6px 6px 0px #6bc2bf;
}

/* --- Promotional Graphics --- */
.trust-wrapper {
    width: 90%;
    max-width: 800px;
    margin: 60px auto 20px;
    border: 2px solid #161616;
    box-shadow: 8px 8px 0px #6bc2bf;
    overflow: hidden;
    background-color: #161616 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-wrapper:hover {
    transform: translate(3px, 3px);
    box-shadow: 5px 5px 0px #6bc2bf;
}
.trust-wrapper a {
    display: block;
}
.trust-wrapper img {
    width: 100%;
    display: block;
}
.infographic-section {
    padding: 60px 0;
}
.infographic-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #161616;
    box-shadow: 8px 8px 0px #6bc2bf;
    overflow: hidden;
    background-color: #161616 !important;
}
.promo-banner-img,
.trust-banner-img,
.infographic-img,
.billboard-img {
    width: 100%;
    display: block;
    object-fit: contain !important;
    object-position: center center !important;
}
.infographic-wrapper img {
    width: 100%;
    display: block;
}
html.dark-mode .trust-wrapper {
    background: #222222;
    border-color: #6bc2bf;
}
html.dark-mode .infographic-wrapper {
    background: #222222;
    border-color: #6bc2bf;
}

@media (max-width: 1024px) {
    .nav-links ul li {
        padding: 8px 8px;
    }
}
