



/* =============================================
   HERO SECTION
   ============================================= */
.svc-res-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
                url("/static/core/images/hero1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.svc-res-breadcrumbs a {
    color: var(--accent);
    transition: opacity 0.3s ease;
}

.svc-res-breadcrumbs a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.svc-res-breadcrumbs span {
    color: #fff;
    margin-left: 5px;
}

.svc-res-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.svc-res-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.svc-res-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    margin-bottom: 35px;
    font-weight: 300;
}

@media (max-width: 991px) {
    .svc-res-hero {
        height: 50vh;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .svc-res-hero {
        height: auto;
        padding: 80px 20px;
    }
    .svc-res-hero-title { font-size: 2.2rem; }
}


/* =============================================
   INTRO SECTION
   ============================================= */
.svc-res-intro-section {
    padding: 70px 40px;
    background-color: var(--bg-light);
}

.svc-res-intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1150px;
    margin: 0 auto;
}

.svc-res-intro-text {
    flex: 1 1 500px;
}

.svc-res-intro-header {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.2;
}

.svc-res-intro-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text);
}

.svc-res-intro-image {
    flex: 1 1 400px;
}

.svc-res-intro-img {
    width: 100%;
    aspect-ratio: 17 / 13;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: block;
}

@media screen and (max-width: 992px) {
    .svc-res-intro-section {
        padding: 55px 30px;
    }
    .svc-res-intro-header {
        font-size: 2rem;
    }
    .svc-res-intro-img {
        aspect-ratio: 16 / 9;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .svc-res-intro-section {
        padding: 40px 20px;
        text-align: center;
    }
    .svc-res-intro-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .svc-res-intro-text {
        order: 1;
        flex: 1 1 100%;
        width: 100%;
    }
    .svc-res-intro-image {
        order: 2;
        flex: 1 1 100%;
        width: 100%;
    }
    .svc-res-intro-img {
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }
    .svc-res-intro-header {
        font-size: 1.75rem;
    }
}


/* =============================================
   CHECKLIST SECTION
   ============================================= */
.svc-res-check-section {
    background-color: #f0f6ff;
    padding: 70px 20px;
}

.svc-res-check-container {
    max-width: 1200px;
    margin: 0 auto;
}

.svc-res-check-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px auto;
}

.svc-res-check-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.svc-res-check-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Premium wrapper box */
.svc-res-checklist-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 80, 180, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 45px 40px 35px;
    border: 1px solid #e0ecff;
}

.checklist-main-title {
    text-align: left;
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    border-left: 4px solid var(--secondary);
    padding-left: 12px;
}

/* Card grid */
.svc-res-check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
    align-items: start;
}

/* Room cards */
.check-card {
    background: #f8fbff;
    padding: 24px 22px;
    border-radius: 14px;
    border: 1px solid #ddeaff;
    border-top: 4px solid var(--secondary);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.check-card:hover {
    box-shadow: 0 6px 24px rgba(0, 80, 180, 0.12);
    transform: translateY(-3px);
}

.check-card h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 1px solid #ddeaff;
}

.hidden-rooms {
    display: none;
}

/* Checklist items */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.45;
}

.check-list li i {
    color: #1ab75b;
    font-size: 0.78rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.extra-item {
    display: none;
}

.check-toggle-area {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eef3ff;
    margin-top: 10px;
}

.check-toggle-area .btn {
    margin-top: 20px;
}

.check-final-cta {
    text-align: center;
    margin-top: 35px;
}

@media screen and (max-width: 992px) {
    .svc-res-check-section {
        padding: 55px 20px;
    }
    .svc-res-check-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-res-check-header h2 {
        font-size: 2rem;
    }
    .svc-res-checklist-box {
        padding: 35px 24px 28px;
    }
}

@media screen and (max-width: 600px) {
    .svc-res-check-section {
        padding: 40px 16px;
    }
    .svc-res-check-grid {
        grid-template-columns: 1fr;
    }
    .check-card {
        padding: 20px 18px;
    }
    .svc-res-checklist-box {
        padding: 28px 16px 22px;
        border-radius: 14px;
    }
    .svc-res-check-header h2 {
        font-size: 1.6rem;
    }
    .checklist-main-title {
        font-size: 1.3rem;
    }
}


/* =============================================
   BOOKING STEPS SECTION
   ============================================= */
.svc-booking-steps {
    background: #ffffff;
    padding: 70px 20px;
}

.svc-booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.svc-booking-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.svc-booking-header h2 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.svc-booking-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Grid — card · arrow · card · arrow · card */
.svc-booking-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0 16px;
}

/* Arrow */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.4rem;
    opacity: 0.6;
}

/* Cards */
.svc-step-card {
    background: linear-gradient(160deg, #ffffff 60%, #f0f6ff 100%);
    border: 1px solid #ddeaff;
    border-top: 4px solid var(--secondary);
    border-radius: 16px;
    padding: 30px 24px 26px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 18px rgba(0, 80, 180, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 80, 180, 0.13);
}

/* Step badge */
.step-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

/* Icon circle */
.step-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px auto;
    background: rgba(26, 183, 91, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary);
}

.step-icon i {
    color: var(--secondary);
}

/* Step title */
.svc-step-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Step description */
.svc-step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

@media screen and (max-width: 992px) {
    .svc-booking-steps {
        padding: 55px 20px;
    }
    .svc-booking-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 0;
    }
    .step-arrow {
        padding: 6px 0;
        transform: rotate(90deg);
    }
    .svc-booking-header h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 600px) {
    .svc-booking-steps {
        padding: 40px 16px;
    }
    .svc-step-card {
        padding: 24px 18px 20px;
    }
    .svc-booking-header h2 {
        font-size: 1.5rem;
    }
}




/* =============================================
   RESIDENTIAL FAQ SECTION
   ============================================= */

.res-faq-section {
    background-color: #f0f6ff;
    padding: 70px 20px;
}

.res-faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

/* ── Left: Contact Box ── */
.res-faq-contact {
    background: linear-gradient(135deg, #1a3a63 0%, #2c5aa0 100%);
    border-radius: 18px;
    padding: 40px 32px;
    color: #ffffff;
    text-align: center;
   
   
}

.res-faq-contact h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #ffffff;
}

.res-faq-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.88;
    margin-bottom: 28px;
}

.res-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    
}

.res-contact-item i {
    font-size: 1rem;
    opacity: 0.85;
    width: 20px;
    text-align: center;
}



/* ── Right: FAQ heading ── */
.res-faq-heading {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

/* ── FAQ Accordion — inherits your existing style ── */
.res-faq-accordion-wrap .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 700px;
}

.res-faq-accordion-wrap .faq-item {
    background-color: #fff;
    border-radius: var(--radius-card);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #efefef;
}

.res-faq-accordion-wrap .faq-item:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.res-faq-accordion-wrap .faq-question {
    width: 100%;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    gap: 15px;
}

.res-faq-accordion-wrap .faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-faq-accordion-wrap .faq-icon::before,
.res-faq-accordion-wrap .faq-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 2px;
    background-color: #b0b0b0;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.res-faq-accordion-wrap .faq-icon::before {
    transform: rotate(45deg) translateX(-3px);
}

.res-faq-accordion-wrap .faq-icon::after {
    transform: rotate(-45deg) translateX(3px);
}

.res-faq-accordion-wrap .faq-item.active {
    border-left: 4px solid var(--accent);
}

.res-faq-accordion-wrap .faq-item.active .faq-question {
    color: var(--primary);
}

.res-faq-accordion-wrap .faq-item.active .faq-icon::before {
    transform: rotate(-45deg) translateX(-3px);
    background-color: var(--accent);
}

.res-faq-accordion-wrap .faq-item.active .faq-icon::after {
    transform: rotate(45deg) translateX(3px);
    background-color: var(--accent);
}

.res-faq-accordion-wrap .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.res-faq-accordion-wrap .faq-answer p {
    padding: 0 25px 20px 25px;
    line-height: 1.7;
    color: var(--light-text);
    font-size: 0.98rem;
    margin: 0;
}

.res-faq-accordion-wrap .faq-item.active .faq-answer {
    max-height: 500px;
}

@media screen and (max-width: 992px) {
    .res-faq-container {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .res-faq-contact {
        padding: 28px 20px;
    }

    .res-faq-contact h3 {
        font-size: 1.2rem;
    }

    .res-faq-section {
        padding: 55px 20px;
    }

    .res-faq-heading {
        font-size: 1.5rem;
    }
}

/* Only stack vertically on mobile */
@media screen and (max-width: 600px) {
    .res-faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .res-faq-section {
        padding: 40px 16px;
    }

    .res-faq-contact {
        padding: 28px 20px;
    }

    .res-faq-heading {
        font-size: 1.4rem;
    }

 .res-faq-contact {
        text-align: center;
    }

    .res-contact-item {
        justify-content: center;
    }

    .res-contact-btn {
        margin: 30px auto 0;
    }

    .res-faq-heading {
        text-align: center;
    }
  
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */

.res-final-cta {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    font-family: var(--font);
}

.res-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 400px;
}

.res-cta-image-side {
    flex: 1.2;
    min-width: 400px;
    height: 100%;
}

.res-cta-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}

.res-cta-action-side {
    flex: 1;
    min-width: 400px;
    height: 100%;
    background-color: #0a192f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 5%;
    text-align: center;
}

.res-action-content {
    max-width: 420px;
}

.res-cta-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.res-cta-phone-block {
    margin-bottom: 25px;
}

.res-phone-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.res-phone-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.res-phone-number:hover {
    opacity: 0.8;
}

.res-service-area-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 850px) {
    .res-cta-wrapper { height: auto; }
    .res-cta-image-side { height: 300px; min-width: 100%; }
    .res-cta-action-side { padding: 50px 20px; min-width: 100%; }
}

