/* Gold text utility class */
.gold-text {
    color: #d2851f !important;
}
/* Scroll offset for fixed navbar */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}
@media (min-width: 768px) {
    html {
        scroll-padding-top: 120px;
    }
}
/* Middle Section (between hero and about) */
.middle-section {
    width: 100%;
    min-height: 250px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
    margin: 0 auto 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    position: relative;
}
.middle-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(33, 134, 185, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(210, 132, 31, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
@media (min-width: 768px) {
    .middle-section {
        min-height: 450px;
        padding: 60px 20px;
    }
}
@media (min-width: 1024px) {
    .middle-section {
        min-height: 750px;
        height: 44vw;
        padding: 4vw 0;
    }
}
.middle-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}
.middle-section h2 {
    color: #2186b9;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
    .middle-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}
@media (min-width: 1024px) {
    .middle-section h2 {
        font-size: 2.2rem;
    }
}
.middle-section p {
    color: #555;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 600px;
}
@media (min-width: 768px) {
    .middle-section p {
        font-size: 1.1rem;
    }
}
@media (min-width: 1024px) {
    .middle-section p {
        font-size: 1.2rem;
    }
}
/* Inquire Now Button Styles */
.inquire-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 32px;
    background: linear-gradient(90deg, #ffab3d 0%, #d2851f 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.inquire-btn:hover {
    background: linear-gradient(90deg, #d2851f 0%, #ffab3d 100%);
    color: #2186b9;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
/* --- Restore missing sticky-container and hero-section media queries --- */
.sticky-container{
    position:relative;
    top:-35vw;
    height: 45vw;
    width: 50%;
    z-index:0;
}

/* Inquiry Section Styles */
.inquiry-section {
    background: #f7f7f7;
    padding: 4vw 0 4vw 0;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.inquiry-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(35,63,99,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}
.inquiry-section h2 {
    color: #2186b9;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.inquiry-section p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.inquiry-form .form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}
.inquiry-form label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #2186b9;
}
.inquiry-form input,
.inquiry-form textarea {
    padding: 0.7rem 1rem;
    border: 1px solid #d2d2d2;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #fafbfc;
    transition: border 0.2s;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border: 1.5px solid #ffab3d;
    outline: none;
}
.inquiry-form textarea {
    resize: vertical;
    min-height: 90px;
    max-height: 220px;
}
.inquiry-form .inquire-btn {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

@media (orientation: landscape) and (min-width: 1200px){
    .hero-section {
        height: 60vw;
    }
}

@media (min-width: 768px) and (max-width: 1200px){
    .hero-section {
        display: block;
    }
}

@media (orientation: portrait) and (max-width: 1024px){
    .hero-section {
        height: 700px;
        top:0vh;
    }
    .hero-before-image{
        position:absolute;
        top:-170px;
        z-index:30;
    }
}

@media (orientation: landscape) and  (max-width:1024px){
    .hero-section {
        height: 700px;
        top:0;
    }
    .hero-before-image{
        position:absolute;
        top:-150px;
        z-index:30;
    }
}

@media (orientation: portrait) and (max-width: 820px){
    .hero-section {
        height: 600px;
    }
    .hero-before-image{
        position:absolute;
        top:-170px;
        z-index:30;
    }
}

@media (orientation: portrait) and  (max-width: 480px){
    .hero-section {
        height: 600px;
        top:0;
    }
}
.patio-before {
    border-right: 2px solid #D2851F;
    background-image: url('../images/patio-before.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.patio-after {
    border-left: 2px solid #D2851F;
    background-image: url('../images/patio-after.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.render-before {
    border-right: 2px solid #D2851F;
    background-image: url('../images/render-before.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.render-after {
    border-left: 2px solid #D2851F;
    background-image: url('../images/render-after.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}
/* Combined CSS for MCAD Roof Cleaning */

/* --- styles.css --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
    font-family: Arial, sans-serif;
    padding-top: 80px;
    box-sizing: border-box;
    margin: 0;
}
@media (min-width: 768px) {
    body {
        padding-top: 0;
    }
}
.container{
    padding-left: 7.5%;
    padding-right: 5%;
}
.primary-color{
    color:#2186b9;
}
.grid-container {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
}
@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
.grid-item {
    background-color: #f1f3f5;
    border-radius: 10px;
    padding-bottom: 100px;
    text-align: center;
    color:rgb(36, 56, 74);
}
h1{
    font-size:clamp(2rem,4vw,5rem);
    word-spacing: 0.5rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
    font-family: 'Arial Narrow', Arial, sans-serif;
}
h2 {
    font-size: clamp(1.5rem,2vw,3rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #2186b9;
}
h3 {
    font-size: clamp(1rem,2vw,1.2rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #2186b9;
}
p {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    margin-bottom: 1em;
    letter-spacing: 0.2px;
    color: #333;
    max-width: 700px;
}
@media (min-width:1024px){ h2{ font-size: clamp(24px, 6vw, 30px); } }
@media (min-width:768px) and (max-width:1500px){ .grid-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:768px){ .grid-container { gap: 0; padding-left:0; padding-right:0; grid-template-columns: repeat(1, 1fr); } h2 { font-size: 20px; } }
@media (max-width: 480px) { h2 { font-size: 18px; } }

/* --- about-section-style.css --- */
.about-section {
    padding-top: 30px;
    padding-bottom: 40px;
    margin-bottom: 10%;
    margin-top: 0;
    width: 100%;
    background: #fff;
    position: relative;
    height: auto;
    min-height: auto;
}
@media (min-width: 768px) {
    .about-section {
        padding-top: 8vw;
        padding-bottom: 10%;
        height: 30vw;
        min-height: 500px;
    }
}
.about-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
@media (min-width: 768px) {
    .about-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
.about-grid-item {
        text-align: left;
        color: #2186b9;
        font-weight: 500;
        width: 100%;
        padding: 0;
}
@media (max-width: 1200px){
    .text-content {
        padding-top: 0;
    }
}
@media (max-width: 768px){
    .about-grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .text-content{
        padding-right: 0 !important;
        padding-top: 0 !important;
        width: 100% !important;
        padding-left: 0 !important;
    }
    .about-section {
        height: auto;
        max-height: none;
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .image-content{
        padding: 0;
    }
    .image-content img{
        width: 100%;
        height: auto;
        padding: 0;
    }
}
.text-content {
    text-align: left;
    height: 100%;
    width: 100%;
    padding-top: 0;
    padding-right: 0;
}
@media (min-width: 768px) {
    .text-content {
        width: 50vw;
        padding-top: 20vh;
        padding-right: 10%;
    }
}
.sub-services{
    font-size: 14px;
    font-weight: bold;
    color: rgb(183, 179, 179);
    margin-bottom: 15px;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .sub-services {
        font-size: 16px;
    }
}
.text-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}
.cta-primary-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #D2851F;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
    margin-bottom: 15px;
    margin-right: 10px;
}
@media (min-width: 768px) {
    .cta-primary-button {
        font-size: 1.1rem;
        margin-bottom: 10%;
    }
}
.cta-primary-button:hover{
    padding: 14px 27px;
}
.cta-secondary-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2186b9;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.3s;
    margin-bottom:10%;
}
.cta-secondary-button:hover{
    padding: 14px 27px;
}
.cta-button:hover {
    background-color: #0056b3;
}
.image-content{
    display: flex;
    padding-top: 20px;
    justify-content: center;
}
@media (min-width: 768px) {
    .image-content {
        padding-top: 10vh;
    }
}
.image-content img{
    width: 100%;
    height: auto;
    padding: 0;
    border-radius: 8px;
}
@media (min-width: 768px) {
    .image-content img {
        width: 70%;
    }
}

/* --- benefits-section-style.css --- */
.full-width-image {
    position: relative;
    opacity: 110%;
    width: 100%;
    height: 50vh;
    background-image: url('../images/BenefitSection.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: rgb(178, 176, 172);
    overflow: hidden;
}
.full-width-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.message-container {
    top:35%;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    align-content: center;
}
.message-container p {
    position:relative;
    color:white;
    text-align: center;
    width: 100%;
    max-width: auto;
}

/* --- certificates-section.css --- */
.certificates {
    text-align: center;
    margin: 40px auto;
}
.certificate-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.certificate-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.certificate-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}
.certificate-item h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}
.certificate-item p {
    font-size: 1rem;
    color: #666;
}
.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* --- contact-us-section-style.css --- */
.contact-us-section{
    background-color: #2186b9;
    color : #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    width: 100%;
}
.contact-us-container{
    width: 100%;
    padding: 20%;
}
.contact-us-container h2{
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}
.contact-us-container .info-group{
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
}
.info-group label .material-icons{
    color : #ffab3d;
}
.contact-us-container .info-group span{
    color:#fff;
    font-weight: 500;
    margin-left: 16px;
}
.map-container {
    width: 100%;
}
.map-container iframe{
    width: 100%;
    height: 100%;
}
@media (max-width:480px) {
    .contact-us-section{
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-us-container{
        padding: 10%;
    }
}

.cta-banner {
    background: linear-gradient(90deg, #d2851f 0%, #2186b9 100%);
    color: #fff;
    padding: 15px 0 10px 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 0.9rem;
    position: fixed;
    top: 83px;
    left: 0;
    right: 0;
    z-index: 14;
    box-shadow: 0 2px 12px rgba(35,63,99,0.07);
    margin-top: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.cta-banner.hide-on-scroll {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
@media (min-width: 768px) {
    .cta-banner {
        padding: 18px 0;
        font-size: 1.08rem;
        margin-top: 0;
        position: relative;
        top: auto;
    }
}
.cta-banner .material-icons{
    color: #ffab3d;
    font-size: 1.3em;
    vertical-align: middle;
    margin-right: 7px;
}
.cta-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 12px;
    gap: 10px;
    text-align: center;
}
@media (min-width: 768px) {
    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        gap: 0;
        padding: 0 18px;
    }
}
.cta-left {
    text-align: center;
    color: #fff;
    font-size: 0.9em;
    line-height: 1.4;
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-weight: 500;
    flex: 1;
    justify-content: center;
}
.cta-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.4);
    white-space: nowrap;
    flex: 1;
    min-height: 40px;
}
.cta-mobile-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.cta-mobile-btn .material-icons {
    font-size: 1.1em;
}
.cta-desktop-text {
    display: none;
}
@media (min-width: 768px) {
    .cta-left {
        text-align: left;
        font-size: 1.08em;
        line-height: 1.5;
        margin-right: 18px;
        flex-direction: column;
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    .cta-mobile-btn {
        display: none;
    }
    .cta-desktop-text {
        display: block;
    }
}
.cta-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    flex: 1;
    justify-content: center;
}
.cta-right .cta-desktop-text {
    display: none;
}
@media (min-width: 768px) {
    .cta-right {
        align-items: flex-start;
        gap: 8px;
        font-size: 1.08em;
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    .cta-right .cta-desktop-text {
        display: block;
    }
    .cta-right .material-icons.cta-desktop-text {
        display: inline;
    }
}
.cta-right a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

/* Additional mobile-specific improvements for CTA banner */
@media (max-width: 480px) {
    .cta-banner {
        padding: 13px 0 8px 0;
        font-size: 0.85rem;
        top: 78px;
    }
    .cta-content {
        gap: 8px;
        padding: 0 8px;
    }
    .cta-mobile-btn {
        font-size: 0.8rem;
        padding: 9px 12px;
        gap: 4px;
        min-height: 38px;
    }
    .cta-mobile-btn .material-icons {
        font-size: 1em;
    }
}
.cta-right a:hover {
    color: #ffab3d;
    text-decoration: underline;
}
}

/* --- hero-section-style.css --- */
.hero-section {
    z-index: 1;
    position: relative;
    top: 0vh;
    height: 60vh;
    padding-top: 81px;
}
@media (min-width: 768px) {
    .hero-section {
        height: 55vh;
        padding-top: 0;
    }
}
@media (min-width: 1200px) {
    .hero-section {
        height: 50vh;
    }
}
.hero-image img {
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: auto;
}
.hero-image{
    display:relative;
}
.hero-before-image{
    position:absolute;
    top:-95%;
    z-index:30;
}
.hero-before-image img{
    border-radius:50%;
    border:5px solid white;
    width: 70%;
    height: 70%;
    z-index:50;
}
.hero-content{
    padding:0;
}
.hero-overlay {
    position: sticky;
    top: 60vh;
    left: 7.5%;
    width:40vw;
    min-width: 300px;
    color: #fff;
    background-color: #32465f;
    z-index: 10;
    animation: slideInOverlay 0.5s ease-out forwards;
    animation-delay: 0.5s;
    padding-left:15%;
    padding-right:2%;
    padding-top: 10%;
    padding-bottom: 10%;
}
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 80%, 100% 100%, 0% 100%);
    background-color:  #32465f;
    transform: translateY(-100%);
}
.hero-title {
    padding:0;
    margin-bottom: 15px;
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 1s;
}
.hero-subtitle {
    font-size:clamp(1rem,4vw,1.2rem);
    word-spacing: 0.1rem;
    line-height: 1.5;
    color: rgb(221, 217, 217);
}

/* --- navigation-style.css --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #2186b9;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    box-shadow: 0 2px 12px rgba(35,63,99,0.10);
}
@media (min-width: 768px) {
    .navbar {
        position: absolute;
    }
}
.navbar .logo img {
    z-index: 40;
    width: 90px;
    height: auto;
    margin-right: 12px;
    filter: drop-shadow(0 2px 8px rgba(33,134,185,0.18));
    transition: transform 0.2s;
}
@media (min-width: 768px) {
    .navbar .logo img {
        width: 110px;
        margin-right: 15px;
    }
}
@media (min-width: 1024px) {
    .navbar .logo img {
        width: 130px;
        margin-right: 18px;
    }
}
.navbar .logo img:hover {
    transform: scale(1.07) rotate(-2deg);
}
.nav-links {
    list-style: none;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    z-index: 39;
    box-shadow: 0 4px 12px rgba(35,63,99,0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}
.toggle-menu:checked ~ .nav-links {
    display: flex;
}
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        position: static;
        width: auto;
        background: transparent;
        padding: 0;
        z-index: 40;
        box-shadow: none;
        flex-direction: row;
        max-height: none;
    }
}
.nav-links li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #eee;
}
@media (min-width: 768px) {
    .nav-links li {
        margin: 0 1rem;
        width: auto;
        border-bottom: none;
    }
}
.nav-links a {
    text-decoration: none;
    color: #2186b9;
    transition: color 0.2s, background 0.2s;
    font-size: 1rem;
    letter-spacing: 0.2px;
    line-height: 1.6;
    font-weight: 600;
    padding: 14px 18px;
    display: block;
}
@media (min-width: 768px) {
    .nav-links a {
        font-size: clamp(14px, 1.5vw, 18px);
        padding: 10px;
        display: inline-block;
    }
}

.nav-links a:hover {
    color: #d2851f;
    background: #f4f4f4;
    border-radius: 4px;
    text-decoration: none;
}

/* Mobile-only menu items */
.mobile-only {
    display: block;
}
@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

.mobile-only a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2186b9;
}

.mobile-only a .material-icons {
    font-size: 1.2em;
    color: #d2851f;
}

.mobile-only.mobile-call {
    border-bottom: none;
    padding: 16px 18px 20px 18px;
    background: transparent;
    margin-top: 12px;
}

.mobile-call-btn {
    background: linear-gradient(135deg, #d2851f 0%, #e89a2e 100%) !important;
    color: #fff !important;
    text-align: center;
    justify-content: center;
    padding: 16px 24px !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem !important;
    box-shadow: 0 6px 20px rgba(210, 132, 31, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-call-btn:hover {
    background: linear-gradient(135deg, #e89a2e 0%, #d2851f 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 132, 31, 0.5);
}

.mobile-call-btn .material-icons {
    color: #fff !important;
    font-size: 1.4em;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.nav-links a.active {
    color: #fff;
    background: #d2851f;
}
.nav-links .cta-nav{
    color: #fff;
    padding:7px 14px;
    background-color: #2186b9;
    border-radius: 2px;
}
.hamburger-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 2px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    z-index: 41;
}
@media (min-width: 768px) {
    .hamburger-wrapper {
        display: none;
    }
}
.toggle-menu {
    display: none;
}
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 24px;
    width: 28px;
    background-color: transparent;
    position: relative;
}
.hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: #2186b9;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}
.hamburger .bar:nth-child(1) {
    top: 0;
}
.hamburger .bar:nth-child(2) {
    top: 10px;
    opacity: 1;
}
.hamburger .bar:nth-child(3) {
    top: 20px;
}
.toggle-menu:checked ~ .hamburger-wrapper .hamburger .bar:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}
.toggle-menu:checked ~ .hamburger-wrapper .hamburger .bar:nth-child(2) {
    opacity: 0;
}
.toggle-menu:checked ~ .hamburger-wrapper .hamburger .bar:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* --- services-section-style.css --- */
.service-section {
    position: relative;
    width: 100%;
    backface-visibility: 75%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2186b9;
    padding-top:5vw;
    padding-bottom:10%;
}
.services-grid{
    display: flex;
}
.service-section h2{
    text-align: center;
    padding-top:20px;
    color: #d2851f;
    text-shadow: none;
}
.service-section .service-content{
    margin-bottom: 5%;
    padding-bottom: 10%;
    border-bottom: 2px solid rgb(201, 197, 197);
}
.service-section h3{
    text-align: center;
    line-height: 1.7;
    margin-bottom:12px;
    color: #2186b9;
}
.service-section p{
    font-size: clamp(12px, 1.5vw, 16px);
    color: #2186b9;
    margin: 0 18px 16px 18px;
    padding: 0 6px;
    word-break: break-word;
    line-height: 1.6;
}
.service-image-container{
    display:flex;
}
.service-image .service-images-title{
    position: absolute;
    background-color: white;
    color:#3b424e;
    padding:5px;
    bottom:0;
    left: 0;
}
.service-section  .service-image {
    position: relative;
    width: 50%;
    height: 30vh;
    margin-bottom: 5%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.service-section video {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 5%;
    object-fit: cover;
    border-radius: 10px;
}
.roof-before{
    border-right: 2px solid #D2851F;
    background-image: url('../images/roof-before.jpg');
}

.roof-after{
    border-left: 2px solid #D2851F;
    background-image: url('../images/roof-after.jpg');
}

.render-after{
    border-left: 2px solid #D2851F;
    background-image: url('../images/render-after.jpg');
}

/* --- why-choose-us-style.css --- */
.why-us-section {
    position: relative;
    width: 100%;
    background:rgb(231, 229, 229);
    display: flex;
    justify-content: center;
    align-items: center;
    color: darkgray;
    text-align: center;
    overflow: hidden;
    min-height: 200px;
}
.why-us-container {
    position: relative;
    z-index: 2;
}
.why-us-section h2 {
    color: #2186b9;
    text-align: center;
}
.why-us-section p {
    max-width: 700px;
}
@media (min-width: 1200px) {
    .why-us-section {
        height: 40vh;
    }
}
@media (max-width: 1200px) {
    .why-us-section {
        height: 35vh;
    }
}
@media (max-width: 768px) {
    .why-us-section {
        height: 25vh;
    }
}
@media (max-width: 480px) {
    .why-us-section {
        height: 30vh;
    }
}

/* --- why-moss-style.css --- */
.why-moss-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}
@media (max-width: 768px) {
    .why-moss-section {
        padding: 40px 0;
        min-height: 300px;
    }
}
.why-moss-container {
    position: relative;
    z-index: 2;
}
.why-moss h2 {
    color: #2186b9;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.why-moss h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d2851f 0%, #2186b9 100%);
    border-radius: 2px;
}
@media (max-width: 768px) {
    .why-moss h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}
.why-moss video {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    object-fit: cover;
    border-radius: 16px;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(33, 134, 185, 0.15);
}
.video-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .video-item {
        border-radius: 12px;
    }
    .why-moss video {
        border-radius: 12px;
    }
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.play-button,
.pause-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    font-size: 16px;
    background: linear-gradient(135deg, rgba(33, 134, 185, 0.9) 0%, rgba(210, 132, 31, 0.9) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: none;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(33, 134, 185, 0.4);
}
.play-button:hover,
.pause-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(33, 134, 185, 0.5);
}
.play-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
}
.play-button .material-icons {
    font-size: 32px;
}
.pause-button .material-icons {
    font-size: 40px;
    padding: 10px;
}
@media (max-width: 768px) {
    .play-button {
        padding: 14px 28px;
        font-size: 16px;
        gap: 8px;
    }
    .play-button .material-icons {
        font-size: 28px;
    }
    .pause-button .material-icons {
        font-size: 36px;
    }
}

/* --- Footer Styles --- */
footer {
    padding: 40px 20px 20px 20px !important;
    background: #14202c !important;
    color: #ffffff !important;
}
@media (min-width: 768px) {
    footer {
        padding: 60px 40px 30px 40px !important;
    }
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
footer img {
    display: block;
    margin-bottom: 20px;
    max-width: 120px !important;
}
footer nav {
    margin-bottom: 30px !important;
    padding-left: 0 !important;
}
footer nav a {
    display: block !important;
    margin: 12px 0 !important;
    color: #ffab3d !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px;
    transition: color 0.2s, transform 0.2s;
}
footer nav a:hover {
    color: #2186b9 !important;
    transform: translateX(5px);
}
footer div:last-child {
    font-size: 13px !important;
    margin-top: 30px !important;
    color: #b0b0b0 !important;
    text-align: center !important;
    width: 100% !important;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer div:last-child a {
    color: #ffab3d !important;
    text-decoration: underline !important;
    transition: color 0.2s;
}
footer div:last-child a:hover {
    color: #2186b9 !important;
}
@media (max-width: 768px) {
    footer {
        padding: 30px 15px 15px 15px !important;
    }
    footer nav a {
        font-size: 15px;
        margin: 10px 0 !important;
    }
}
