/* assets/css/responsive.css
   Responsive tweaks for tablets & mobiles
*/

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .why-badge-list {
        columns: 1;
    }
}

@media (max-width: 767.98px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-card {
        padding: 1.5rem 1.7rem;
    }

    .navbar-brand .brand-text {
        font-size: 11px;
    }
}

/* =====================================
   LUXURY SERVICES SECTION (HOMEPAGE)
===================================== */

.lux-services-section {
    background: #ffffff;
}

/* Section Heading */
.lux-title-underline {
    width: 60px;
    height: 2px;
    background: #b48a42;
    /* Luxury gold */
    margin: 10px auto 0 auto;
}

.lux-service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border: 1px solid #e9e9e9;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: .35s ease;
}

.lux-service-card:hover {
    border-color: #d5c3a0;
    /* gold tint */
    background: #faf8f3;
    /* luxury off-white */
    transform: translateY(-3px);
}

.lux-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #121212;
    letter-spacing: .4px;
    font-weight: 600;
}

.lux-service-arrow {
    font-size: 20px;
    color: #b48a42;
    transition: .35s;
}

.lux-service-card:hover .lux-service-arrow {
    transform: translateX(5px);
}

/* Subtitle under section heading */
.lux-section-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 620px;
    margin: 0 auto;
}

/* =====================================
   LUXURY SERVICES SECTION (HOMEPAGE)
===================================== */

.lux-services-section {
    background: #ffffff;
}

.lux-title-underline {
    width: 60px;
    height: 2px;
    background: #b48a42;
    /* Luxury gold */
    margin: 10px auto 0 auto;
}

.lux-services-section .lux-service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border: 1px solid #e9e9e9;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: .35s ease;
}

.lux-services-section .lux-service-card:hover {
    border-color: #d5c3a0;
    /* gold tint */
    background: #faf8f3;
    /* luxury off-white */
    transform: translateY(-3px);
}

.lux-services-section .lux-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #121212;
    letter-spacing: .4px;
    font-weight: 600;
}

.lux-services-section .lux-service-arrow {
    font-size: 20px;
    color: #b48a42;
    transition: .35s;
}

.lux-services-section .lux-service-card:hover .lux-service-arrow {
    transform: translateX(5px);
}

.lux-services-section .lux-section-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 620px;
    margin: 0 auto;
}

/* ================================
   LUXURY SERVICES SECTION (SAFE)
================================ */

.lux-services-section {
    background: #ffffff;
}

.lux-services-section .lux-title-underline {
    width: 60px;
    height: 2px;
    background: #b48a42;
    margin: 10px auto 0 auto;
}

.lux-services-section .lux-service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border: 1px solid #e9e9e9;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: .35s ease;
}

.lux-services-section .lux-service-card:hover {
    border-color: #d5c3a0;
    background: #faf8f3;
    transform: translateY(-3px);
}

.lux-services-section .lux-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #121212;
    font-weight: 600;
}

.lux-services-section .lux-service-arrow {
    font-size: 20px;
    color: #b48a42;
    transition: .35s;
}

.lux-services-section .lux-service-card:hover .lux-service-arrow {
    transform: translateX(5px);
}

.lux-services-section .lux-section-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================
   LUX SERVICE DESCRIPTION TOGGLE
============================ */

.lux-service-desc {
    display: none;
    background: #fff;
    padding: 15px 25px 5px 25px;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-radius: 0 0 6px 6px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow rotation */
.lux-service-card.active .lux-service-arrow {
    transform: rotate(90deg);
}

.lux-about-img-wrap img {
    height: 470px;

}

.aboutusleft {
    padding-right: 50px;
}