/* --- MODAL STYLES FOR GET QUOTE POPUP --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.45);
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.modal-content {
    background: #fff;
    margin: auto;
    padding: 32px 24px 24px 24px;
    border-radius: 18px;
    max-width: 400px;
    width: 90vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: modalIn 0.2s;
}
@keyframes modalIn {
    from { transform: translateY(40px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-content h2 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.5rem;
    text-align: center;
}
.modal-content label {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--secondary);
}
.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: border 0.2s;
}
.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    border: 1.5px solid var(--primary);
    outline: none;
}
.modal-content button.cta-btn {
    width: 100%;
    margin-top: 8px;
    font-size: 1.1rem;
    padding: 12px 0;
    border-radius: 30px;
}
.modal-content .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.6rem;
    color: var(--secondary);
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
}
.modal-content .close:hover {
    color: var(--primary);
}
@media (max-width: 576px) {
    .modal-content {
        padding: 18px 6px 16px 6px;
        max-width: 98vw;
    }
    .modal-content h2 {
        font-size: 1.1rem;
    }
}
/* --- END MODAL STYLES --- */
/* Service Pages CSS - Aethera HomeCare */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* --- GLOBAL & BASE STYLES (from styles.css) --- */
:root {
    --primary: #f57c00;
    --secondary: #007a7a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    margin-top: 110px;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
section {
    padding: 80px 0;
}
h1, h2, h3, h4 {
    margin-bottom: 20px;
    color: var(--dark-gray);
}
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
}
p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-secondary {
    background-color: var(--secondary);
}
.btn-secondary:hover {
    background-color: var(--primary);
}
/* Navbar Button Style */
.btn-navbar {
    padding: 10px 22px;
    margin-left: 18px;
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    vertical-align: middle;
    display: inline-block;
}
.btn-navbar:hover {
    background-color: var(--secondary);
    color: var(--white) !important;
    transform: translateY(-2px);
}
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 10px 0;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    align-items: center;
    margin-top: 0;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--secondary);
    gap: 10px;
    align-self: flex-start;
    margin-top: -8px;
}
.logo-img {
    height: 54px;
    width: auto;
    display: block;
}
.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.logo-text span {
    color: var(--primary);
}
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    align-self: flex-start;
    margin-top: -8px;
}
.nav-item {
    margin-left: 30px;
}
.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.nav-link:hover:after {
    width: 100%;
}
.hamburger {
    display: none;
    cursor: pointer;
}
/* Info Strip Styles */
/* Info Strip Styles */
.info-strip {
    width: 100%;
    background: var(--primary);
    color: #fff;
    position: fixed;
    top: 70px;
    left: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    font-size: 0.97rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    gap: 12px;
    letter-spacing: 0.5px;
}
.info-strip .info-sep {
    opacity: 0.7;
    font-weight: 400;
    font-size: 0.97rem;
}
.info-strip .info-link {
    color: #fff;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 16px;
    transition: color 0.2s;
    font-weight: 500;
    position: relative;
    font-size: 0.97rem;
}
.info-strip .info-link:hover {
    color: var(--secondary);
    background: none;
}
.info-strip .info-link.info-contact {
    font-weight: 700;
    background: rgba(0,0,0,0.08);
    color: #fff;
    padding: 4px 16px;
    letter-spacing: 0.5px;
}
.info-strip .info-link.info-contact:hover {
    color: var(--secondary);
    background: rgba(0,0,0,0.08);
}
/* Info Strip Mobile Styles */
.info-strip-mobile {
    display: none;
    width: 100%;
    background: var(--primary);
    color: #fff;
    position: fixed;
    top: 70px;
    left: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    font-size: 1.2rem;
    gap: 18px;
    letter-spacing: 0.5px;
}
.info-link-mobile {
    color: #fff;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 16px;
    transition: color 0.2s;
    font-weight: 500;
    position: relative;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
.info-link-mobile:hover {
    background: var(--primary) !important;
    color: var(--secondary);
    background: none;
}
.info-contact-mobile {
    font-weight: 700;
    background: rgba(0,0,0,0.08);
    color: #fff;
    padding: 4px 12px;
    letter-spacing: 0.5px;
}
.info-contact-mobile:hover {
    color: var(--secondary);
    background: rgba(0,0,0,0.08);
}
.mobile-contact-number {
    font-size: 1rem;
    margin-left: 4px;
}
/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}
.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
/* --- END GLOBAL & BASE STYLES --- */

/* --- CTA SECTION & SERVICE CONTENT (already present, keep as is) --- */
.cta-section {
    background: var(--primary);
    color: #fff;
    padding: 18px 0 12px 0;
}
.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-image-block {
    flex: 1 1 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border: 5px solid var(--white);
    background: #fff;
}
.cta-content-block {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}
.cta-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cta-contact-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 10px;
}
.cta-phone {
    font-size: 1.25rem;
    font-weight: 600;
    background: rgba(255,255,255,0.13);
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.cta-btn {
    display: inline-block;
    padding: 13px 38px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.13);
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.cta-btn:hover {
    background: var(--dark-gray);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
/* Service Content Styles */
.service-main {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 48px 40px 40px 40px;
}
.service-main h1 {
    color: var(--secondary);
    font-size: 2.3rem;
    margin-bottom: 18px;
    font-weight: 800;
}
.service-main .service-icon {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 18px;
}
.service-main p {
    font-size: 1.15rem;
    margin-bottom: 18px;
}
.service-main ul {
    margin: 18px 0 0 18px;
    font-size: 1.08rem;
    color: var(--dark-gray);
}
/* --- END CTA SECTION & SERVICE CONTENT --- */

/* --- RESPONSIVE STYLES (from styles.css) --- */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .founder-container {
        flex-direction: column;
    }
}
@media (max-width: 900px) {
    .cta-container {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    .cta-content-block {
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        margin: 15px 0;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--dark-gray);
    }
    .service-main {
        padding: 24px 8px 18px 8px;
        margin: 30px 0 20px 0;
    }
    .cta-container {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .cta-img {
        width: 120px;
        height: 120px;
    }
    .cta-title {
        font-size: 1.2rem;
    }
}
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    section {
        padding: 60px 0;
    }
    .info-strip {
        display: none !important;
    }
    .info-strip-mobile {
        display: flex !important;
        align-items: center;
    }
    /* CTA Section Responsive Styles */
    .cta-section {
        background: var(--primary);
        padding: 18px 0 12px 0;
    }
    .cta-container {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .cta-image-block {
        justify-content: center;
        align-items: center;
    }
    .cta-img {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        border-width: 2px;
    }
    .cta-content-block {
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    .cta-title {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 6px;
    }
    .cta-contact-row {
        gap: 10px;
        flex-direction: column;
        margin-top: 4px;
    }
    .cta-phone {
        font-size: 0.95rem;
        padding: 6px 10px;
        border-radius: 18px;
    }
    .cta-btn {
        padding: 8px 18px;
        font-size: 0.98rem;
        border-radius: 18px;
    }
}
@media (min-width: 577px) {
    .info-strip-mobile {
        display: none !important;
    }
}
