body {
    background-image: url(../imgs/windowCleaning.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

/* Header Styles */
#left-header-div {
    background-color: white;
    justify-content: center;
    align-items: center;
}

#telephone-div {
    display: flex;
    flex-direction: row;
}

#right-header-div {
    padding: calc(1rem/3) 0;
    background-color: rgb(98, 166, 245);
    align-items: center;
}

.text-spacer {
    font-size: 1.1rem;
    padding: 0 2rem 0 2rem;
    color: rgba(98, 166, 245, 0.9);
    max-height: 100%;
    margin: auto 0;
}

.icon-spacer {
    font-size: 1.1rem;
    padding: 0 0.5rem 0 0.5rem;
    color: rgba(98, 166, 245, 0.9);
    max-height: 100%;
    margin: auto 0;
}

#time-div * {
    margin: auto;
}

#telephone-div * {
    margin: auto;
}

.header-img {
    width: auto;
    height: 1.67rem;
}

#location-div {
    display: flex;
    flex-direction: row;
}

#location-div * {
    margin: auto;
}

.inherit-styles {
    color: inherit;
    text-decoration: none;
}

/* Navigation Styles */
@media (max-width: 1060px) {
    header * {
        display: none;
    }

    #tools-img {
        display: none;
    }
    
    #menu-svg {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 1000;
        cursor: pointer;
    }

    .menu-div-li {
        display: none !important;
    }

    #nav-center-menu-div {
        justify-items: end;
    }
}

@media (min-width: 1061px) {
    #menu-svg {
        display: none;
    }
}

#nav-container {
    padding: 1rem;
    background-color: rgb(32, 83, 143);
    max-height: 20vh;  
}

#nav-container * {
    color: white;
}

#nav-logo {
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

#img-wrapper {
    background-color: white;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    height: 10vh;
    border-radius: 6vh;    
    width: 10vh;
    justify-content: center;
    aspect-ratio: 1/1 !important;
}

#nav-title {
    margin: 0 1rem 0 1rem;
    color: white;
    font-size: 1.5rem;
    line-height: 1.5;
    font-family: "Bubblegum Sans", sans-serif;
}

#nav-center-menu-div li {
    display: inline-block;
}

#nav-center-menu-div {
    max-width: fit-content;
}

#nav-center-col {
    align-content: center;
    justify-items: left;
}

.nav-spacer {
    display: inline-block;
    width: 2.5vw;
    margin: auto;
}

.nav-title-p {
    font-weight: bold;
    font-size: 2rem;
    margin: auto;
}

.nav-title-p:hover {
    font-weight: bold;
    font-size: 2rem;
    margin: auto;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

#tools-img {
    height: 3.50588235295rem;
    width: auto;
}

@media (max-width: 224px) {
    #nav-title {
        display: none;
    }
}

/* Hero Section */
#hero-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#hero-title {
    color: rgb(32, 83, 143);
    font-family: "Bubblegum Sans", sans-serif;
    position: relative;
    display: inline-block;
}

#hero-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #38bdf8);
    border-radius: 999px;
    margin: 1rem auto 0;
}

#hero-subtitle {
    color: #555;
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Main Content */
#main-content {
    margin-bottom: 3rem;
}

.content-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section-title {
    color: rgb(32, 83, 143);
    font-family: "Bubblegum Sans", sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #38bdf8);
    border-radius: 999px;
    margin-top: 0.5rem;
}

.section-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

/* Benefit Cards */
.benefit-card {
    background: linear-gradient(135deg, rgb(98, 166, 245), rgb(32, 83, 143));
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.benefit-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 1rem;
    margin: 0;
}

/* Property Types */
.property-type {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 2px solid rgba(98, 166, 245, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.property-type:hover {
    border-color: rgb(98, 166, 245);
    box-shadow: 0 4px 12px rgba(98, 166, 245, 0.3);
    transform: translateY(-3px);
}

.property-type i {
    font-size: 2.5rem;
    color: rgb(98, 166, 245);
    margin-bottom: 1rem;
    display: block;
}

.property-type h4 {
    color: rgb(32, 83, 143);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.property-type p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.service-list i {
    color: #22c55e;
    font-size: 1.3rem;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Contract Options */
.contract-option {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(98, 166, 245, 0.3);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.contract-option:hover {
    border-color: rgb(98, 166, 245);
    box-shadow: 0 6px 16px rgba(98, 166, 245, 0.2);
    transform: translateY(-5px);
}

.contract-option.featured {
    border-color: rgb(32, 83, 143);
    border-width: 3px;
    background: linear-gradient(to bottom, rgba(98, 166, 245, 0.05), white);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #22c55e, #38bdf8);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-weight: bold;
    font-size: 0.85rem;
}

.contract-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contract-header i {
    font-size: 3rem;
    color: rgb(98, 166, 245);
    display: block;
    margin-bottom: 1rem;
}

.contract-header h3 {
    color: rgb(32, 83, 143);
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
}

.contract-option p {
    color: #555;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 3em;
}

.contract-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contract-option ul li {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.contract-option ul li::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgb(32, 83, 143), rgb(98, 166, 245));
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
}

.cta-card h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: "Bubblegum Sans", sans-serif;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-primary {
    background-color: white;
    color: rgb(32, 83, 143);
}

.btn-primary:hover {
    background-color: #22c55e;
    color: white;
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: rgb(32, 83, 143);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
#footer {
    background-color: rgb(31, 83, 143);
    color: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-text {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero-container {
        padding: 2rem 1.5rem;
    }

    #hero-title {
        font-size: 2rem;
    }

    #hero-subtitle {
        font-size: 1.1rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .benefit-card {
        margin-bottom: 1rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .property-type {
        margin-bottom: 1rem;
    }

    .contract-option {
        margin-bottom: 1.5rem;
    }
}


nav {
    background-color: rgb(31, 83, 143);
}