/* Care & Maintenance Page Styles */
.care-maintenance-page {
    color: #e6f0f0;
    min-height: 100vh;
}
.care-maintenance-hero {
    padding: 140px 0 1px;
    background: #0b2f33;
}
.care-maintenance-container {
    width: min(1100px, 90%);
    margin: 0 auto;
}
.care-maintenance-title {
    font-family: "Arches", serif;
    font-size: 111px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 1;
    margin-bottom: 40px;
}
.care-maintenance-content {
    font-family: "Rota", "Cormorant Infant", serif;
    font-size: 16px;
    line-height: 1.7;
    color: #e6f0f0;
    margin-bottom: 30px;
}

/* Care & Maintenance Section Styles */
.care-maintenance-section {
    padding: 10px 0;
    background: #0b2f33;
}
.care-maintenance-section-title {
    font-family: "Arches", serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: normal;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0 0 40px;
    text-align: center;
    line-height: 1.2;
}
.care-maintenance-section-description {
    font-family: "Rota", "Cormorant Infant", serif;
    font-size: 18px;
    line-height: 1.8;
    color: #e6f0f0;
    /* max-width: 1000px; */
    margin: 0 auto;
    text-align: left;
}
.care-maintenance-section-description p {
    margin-bottom: 20px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .care-maintenance-title {
        font-size: 40px;
    }
    .care-maintenance-hero {
        padding: 60px 0 40px;
        padding-top: 105px;
    }
    .care-maintenance-section {
        padding: 60px 0;
    }
    .care-maintenance-section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .care-maintenance-section-description {
        font-size: 16px;
        line-height: 1.7;
    }
    .care-maintenance-section-description p{
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .care-maintenance-hero {
        padding: 40px 0 30px;
        padding-top: 105px;
    }
    .care-maintenance-section {
        padding: 1px;
    }
    .care-maintenance-section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .care-maintenance-section-description {
        font-size: 15px;
    }
}

/* Routine Cleaning Section */
.routine-cleaning-section {
    padding: 30px 0px;
    background: #0b2f33;
}

.routine-cleaning-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.routine-cleaning-left {
    order: 1;
}

.routine-cleaning-title {
    font-family: 'Arches', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.routine-cleaning-description {
    font-family: 'Rota', sans-serif;
    font-size: clamp(1rem, 3vw, 1.1rem);
    line-height: 1.6;
    color: white;
    margin-bottom: 1rem;
}

.routine-cleaning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.routine-cleaning-list li {
    font-family: 'Rota', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.routine-cleaning-list li::before {
    content: '•';
    color: #c8a982;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.routine-cleaning-points-content {
    font-family: 'Rota', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    color: #555;
}

.routine-cleaning-points-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.routine-cleaning-points-content ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: white;
	font-size:16px;
}

.routine-cleaning-points-content ul li::before {
    content: '•';
    color: #c8a982;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.routine-cleaning-points-content ol {
    padding-left: 1.5rem;
    margin: 0;
}

.routine-cleaning-points-content ol li {
    margin-bottom: 0.75rem;
    color: #555;
}

.routine-cleaning-points-content p {
    margin-bottom: 1rem;
}

.routine-cleaning-points-content strong {
    color: #2c2c2c;
}

.routine-cleaning-points-content em {
    font-style: italic;
}

.routine-cleaning-right {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.routine-cleaning-image {
    width: 100%;
    height: auto;
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (min-width: 768px) {
    .routine-cleaning-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
		position:relative;
		z-index:1;
    }

    .routine-cleaning-left {
        order: 1;
    }

    .routine-cleaning-right {
        order: 2;
		justify-content:flex-end;
    }

    .routine-cleaning-list li {
        margin-bottom: 1rem;
    }

    .routine-cleaning-points-content ul li {
        margin-bottom: 1rem;
    }

    .routine-cleaning-points-content ol li {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .routine-cleaning-section {
        padding: 1px;
    }

    .routine-cleaning-content {
        gap: 1.5rem;
    }

    .routine-cleaning-title {
        margin-bottom: 1rem;
    }

    .routine-cleaning-description {
        margin-bottom: 1.5rem;
    }

    .routine-cleaning-list li {
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }

    .routine-cleaning-points-content ul li {
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }

    .routine-cleaning-points-content ol li {
        margin-bottom: 0.5rem;
    }
}

/* Routine Cleaning Reverse Section */
.routine-cleaning-reverse {
	background-image: url(https://themetalhues.com/wp-content/uploads/2026/01/02.jpg);
	background-repeat: no-repeat;
    background-size: cover;
	background-attachment:fixed;
    width: 100%;
	position:relative;
}

.routine-cleaning-reverse::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 59, 64, 0.85);
	pointer-events: none;
}

.routine-cleaning-reverse .routine-cleaning-title {
    color: white;
}

.routine-cleaning-reverse .routine-cleaning-description {
    color: white;
}

.routine-cleaning-reverse .routine-cleaning-points-content {
    color: #555;
}

.routine-cleaning-reverse .routine-cleaning-points-content ul li {
    color: white;
}

.routine-cleaning-reverse .routine-cleaning-points-content ol li {
    color: #555;
}

.routine-cleaning-reverse .routine-cleaning-points-content strong {
    color: #2c2c2c;
}

@media (min-width: 768px) {
    .routine-cleaning-content-reverse .routine-cleaning-left {
        order: 2;
    }

    .routine-cleaning-content-reverse .routine-cleaning-right {
        order: 1;
		justify-content:flex-start;
    }
}

/* Long-Term Maintenance Section */
.long-term-maintenance-section {
    padding: 40px;
    background: #0b2f33;
    text-align: center;
    border-radius: 0 0 70px 70px;
    margin-bottom: 220px;
}

.long-term-maintenance-title {
    font-family: 'Arches', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 400;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-transform: capitalize;
}

.long-term-maintenance-description {
    font-family: 'Rota', sans-serif;
    font-size: clamp(1rem, 3vw, 1.7rem);
    line-height: 1.7;
    color: #e6f0f0;
    text-align: left;
}

.long-term-maintenance-description p {
    margin-bottom: 1.5rem;
	font-size:19px;
}

@media (max-width: 480px) {
    .long-term-maintenance-section {
        padding: clamp(2rem, 6vw, 4rem) 1rem;
        margin-bottom: 110px;
        border-radius: 0 0 40px 40px;   
    }
    
    .long-term-maintenance-title {
        margin-bottom: 1.5rem;
    }
    
    .long-term-maintenance-description {
        font-size: 0.95rem;
    }
}
