/* Housekeeping Page Styles */
.hero.features-hero {
    padding: 140px 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background-image.jpg');
    background-size: cover;
    background-position: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.align-items-center {
    align-items: center;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    position: relative;
    width: 80%;
}



.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;

}

.hero h1 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 25px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 80%;
        margin-bottom: 30px;
    }

    .row {
        flex-direction: column-reverse;
    }

    .hero h1 {
        font-size: 36px;
        text-align: center;
    }

    .hero p {
        text-align: center;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-gradient {
    background: linear-gradient(to right, #298CB6, #1DA5A1);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* New Automation Section Custom Styles */
.features-section.new-automation-section {
    margin-top: 80px;
    margin-bottom: 80px;
    background-color: #F7FAFC;
}

.features-section.new-automation-section .row {
    align-items: center;
}

.features-section.new-automation-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

.features-section.new-automation-section p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
}

.features-section.new-automation-section .img-fluid.dashboard-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media (max-width: 991px) {
    .features-section.new-automation-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .features-section.new-automation-section h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .features-section.new-automation-section p {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .features-section.new-automation-section .row {
        flex-direction: column-reverse;
    }

    .features-section.new-automation-section .col-md-6 {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 24px;
    }

    .features-section.new-automation-section h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .features-section.new-automation-section p {
        font-size: 0.98rem;
        margin-bottom: 18px;
    }

    .features-section.new-automation-section {
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

/* Room Attendant App Section Styles */
.attendant-app-section {
    margin: 80px 0;
}

.attendant-app-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.attendant-app-content {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 0 15px;
}

.attendant-app-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

.attendant-app-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}

.attendant-app-image {
    flex: 1 1 50%;
    max-width: 80%;
    padding: 0 15px;
    text-align: center;
}

.attendant-app-image img {
    max-width: auto;
    width: 100%;
    height: auto;
    border-radius: 12px;

}

@media (max-width: 991px) {
    .attendant-app-section {
        margin: 40px 0;
    }

    .attendant-app-content,
    .attendant-app-image {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 10px;
    }

    .attendant-app-content h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .attendant-app-content p {
        font-size: 1rem;
        text-align: center;
    }

    .attendant-app-image {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .attendant-app-section {
        margin: 24px 0;
    }

    .attendant-app-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .attendant-app-content .btn {
        margin-left: 0;
        margin-right: 0;
    }

    .attendant-app-content h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .attendant-app-content p {
        font-size: 0.98rem;
        margin-bottom: 12px;
    }

    .attendant-app-image img {
        max-width: 220px;
    }
}

/* Maintenance Benefits Section Styles */
.maintenance-benefits-section {
    background: linear-gradient(120deg, #129C6B 0%, #1DD397 100%);
    padding: 56px 0 36px 0;
    color: #fff;
    text-align: center;
}

.maintenance-benefits-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    margin-bottom: 32px;
}

.benefit-item {
    background: #fff;
    color: #222;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(123, 47, 242, 0.08);
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 100%;
    padding: 18px 28px;
    font-size: 1.08rem;
    font-weight: 500;
    text-align: left;
    margin: 0 auto;
    transition: box-shadow 0.2s;
}

.benefit-item:hover {
    box-shadow: 0 8px 32px rgba(123, 47, 242, 0.16);
}

.benefit-icon {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-right: 18px;
    flex-shrink: 0;
}

.benefits-footer {
    margin-top: 18px;
    font-size: 1.08rem;
    color: #fff;
    font-weight: 400;
}

.benefits-footer b {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 700px) {
    .maintenance-benefits-section {
        padding: 32px 0 18px 0;
    }

    .maintenance-benefits-section h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .benefit-item {
        font-size: 0.98rem;
        padding: 14px 10px;
    }

    .benefits-list {
        gap: 14px;
    }

    .benefits-footer {
        font-size: 0.98rem;
    }
}

/* Maintenance Key Features Card Section Styles */
.maintenance-keyfeatures-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 60vh;
    padding: 48px 0 0 0;
    background: #fff;
}

.keyfeatures-card {
    position: relative;
    background: #f8f9fc;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(80, 80, 160, 0.08);
    padding: 40px 48px 32px 48px;
    max-width: 950px;
    width: 100%;
    margin: 0 auto 32px auto;
    z-index: 1;
    overflow: hidden;
}

.keyfeatures-badge {
    display: inline-block;
    background: #4b3cff;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 16px;
    padding: 6px 18px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.keyfeatures-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #23233a;
    margin-bottom: 28px;
    text-align: left;
}

.keyfeatures-feature {
    border-bottom: 1px solid #e6e8f0;
    padding: 0;
}

.keyfeatures-feature:last-child {
    border-bottom: none;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 18px 0 18px 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: #23233a;
    transition: color 0.2s;
}

.feature-header.expanded {
    color: #4b3cff;
}

.feature-title {
    flex: 1;
}

.feature-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4b3cff;
    margin-left: 18px;
    user-select: none;
}

.feature-body {
    font-size: 1rem;
    color: #6b6b8a;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
}

.keyfeatures-bgicon {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 120px;
    height: 120px;
    background: url('../images/bgicon-question.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

.keyfeatures-helpbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-size: 1rem;
    color: #23233a;
    margin-top: 18px;
    margin-bottom: 24px;
}

.keyfeatures-helpbar a {
    color: #4b3cff;
    text-decoration: underline;
    font-weight: 500;
    margin-left: 4px;
}

@media (max-width: 900px) {
    .keyfeatures-card {
        padding: 32px 16px 24px 16px;
        max-width: 98vw;
    }

    .keyfeatures-title {
        font-size: 1.3rem;
    }

    .keyfeatures-bgicon {
        width: 80px;
        height: 80px;
        top: 12px;
        right: 10px;
    }
}

@media (max-width: 600px) {
    .features-cards-hk {
        padding: 0 !important;
    }

    .features-card-area-hk {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 20px 8px !important;
        max-width: 98vw !important;
        display: flex !important;
    }

    .features-card-img-hk,
    .features-card-content-hk {
        width: 100% !important;
        max-width: 100vw !important;
        text-align: center !important;
    }

    .features-card-img-hk img {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 600px) {
    .maintenance-keyfeatures-section {
        padding: 18px 0 0 0;
    }

    .keyfeatures-card {
        padding: 18px 4vw 12px 4vw;
    }

    .keyfeatures-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .feature-header {
        font-size: 0.98rem;
        padding: 12px 0 12px 0;
    }

    .feature-toggle {
        font-size: 1.2rem;
        margin-left: 10px;
    }

    .keyfeatures-bgicon {
        width: 48px;
        height: 48px;
        top: 8px;
        right: 4px;
    }

    .keyfeatures-helpbar {
        flex-direction: column;
        gap: 8px;
        font-size: 0.95rem;
    }
}

/* Maintenance Key Features Horizontal Card Styles */
.maintenance-keyfeature-card {
    display: flex;
    align-items: center;
    gap: 40px;
    border-radius: 18px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    overflow: hidden;
}

.mkf-card-image {
    flex: 0 0 400px;
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;

}

.mkf-card-image img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
}

.mkf-card-content {
    flex: 1;
    padding: 32px 32px 32px 24px;
}

.mkf-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a2a3a;
}

.mkf-card-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .maintenance-keyfeature-card {
        flex-direction: column;
        max-width: 98vw;
        gap: 0;
    }

    .mkf-card-image {
        width: 100%;
        height: 350px;
        border-radius: 18px 18px 0 0;
    }

    .mkf-card-content {
        padding: 24px 18px 24px 18px;
    }
}

@media (max-width: 768px) {

    /* Center the badge in hero section */
    .badge {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    /* Maintenance Key Feature Card: image first, content second, text center */
    .maintenance-keyfeature-card {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .mkf-card-content {
        order: 2;
        text-align: center;
        padding: 18px 8px 18px 8px;
    }

    .mkf-card-image {
        order: 1;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}