/* =============================================
   WHY HERO SECTION
   ============================================= */
.why-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/why.webp");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

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

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

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

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

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

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

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

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




/* =============================================
   WHY TRUST SECTION
   ============================================= */
.why-trust-section {
    background: #f0f6ff;
    padding: 70px 20px;
}

.why-trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

/* 3 column grid */
.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Cards */
.why-trust-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;
    box-shadow: 0 4px 18px rgba(0, 80, 180, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Icon circle */
.why-trust-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;
}

/* Individual icon colors */
.why-trust-card:nth-child(1) .why-trust-icon i { color: #2c5aa0; }
.why-trust-card:nth-child(2) .why-trust-icon i { color: #1ab75b; }
.why-trust-card:nth-child(3) .why-trust-icon i { color: #ff8c00; }
.why-trust-card:nth-child(4) .why-trust-icon i { color: #ffb400; }
.why-trust-card:nth-child(5) .why-trust-icon i { color: #00a8a8; }
.why-trust-card:nth-child(6) .why-trust-icon i { color: #ff6b9d; }

.why-trust-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-trust-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .why-trust-section {
        padding: 55px 20px;
    }
    .why-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-trust-header h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 600px) {
    .why-trust-section {
        padding: 40px 16px;
    }
    .why-trust-grid {
        grid-template-columns: 1fr;
    }
    .why-trust-card {
        padding: 24px 18px 20px;
    }
    .why-trust-header h2 {
        font-size: 1.5rem;
    }
}




/* =============================================
   WHY STORY SECTION (Updated for Overlap Style)
   ============================================= */
.why-story-section {
    padding: 70px 20px;
    background-color: #f9f9f9; /* Subtle contrast for the white box */
    overflow: hidden;
}

/* Container to keep content centered and handle the flex layout */
.why-story-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.why-story-box {
    flex: 0 0 480px; /* Slimmer width as requested */
    background: #ffffff;
    border-radius: 25px;
    
    /* Increased vertical padding (120px) to grow the height */
    /* 50px on the left/right to keep it sleek */
    padding: 30px 20px; 
    
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    
    /* Pulls it over the image on the right */
    margin-right: -60px; 
}

.why-story-heading {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-story-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--secondary);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    padding-left: 16px;
    border-left: 4px solid var(--secondary);
}

.why-story-text {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.why-story-text:last-child {
    margin-bottom: 0;
}

/* The Image Container */
.why-story-image {
    flex: 1; /* Fills the rest of the container width */
    height: 600px; /* Fixed height to match prototype depth */
    z-index: 1;
}

.why-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =============================================
   RESPONSIVE FIXES
   ============================================= */

@media screen and (max-width: 992px) {
    .why-story-container {
        flex-direction: row;
    }

    .why-story-box {
        flex: 0 0 360px;
        margin-right: -50px;
        padding: 40px 30px;
    }

    .why-story-image {
        height: 500px;
    }
}

@media screen and (max-width: 600px) {
    .why-story-section {
        padding: 40px 16px;
    }

    .why-story-container {
        flex-direction: column;
        padding: 0;
    }

    .why-story-box {
        flex: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: -40px;
        padding: 30px 20px;
        border-radius: 15px;
        order: 1;
        z-index: 2;
    }

    .why-story-image {
        width: 100%;
        height: 280px;
        order: 2;
    }

    .why-story-heading {
        font-size: 1.8rem;
    }
}




/* =============================================
   WHY CHECKLIST SECTION
   ============================================= */
.why-checklist-section {
    background-color: #f0f6ff;
    padding: 70px 20px;
}

.why-checklist-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-checklist-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.why-checklist-header h2 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* ── Tab Buttons ── */
.why-checklist-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.why-tab-btn {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid #ddeaff;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font);
}

.why-tab-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.why-tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #051876;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(0, 80, 180, 0.15);
}

/* ── Checklist Box ── */
.why-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;
}

/* ── Tab Content ── */
.why-tab-content {
    display: none;
}

.why-tab-content.active {
    display: block;
}

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

/* ── Room Cards ── */
.why-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;
}

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

.why-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 ── */
.why-hidden-rooms {
    display: none;
}

.why-hidden-rooms.why-room-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.why-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;
}

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

/* ── Extra Items ── */
.why-extra-item {
    display: none;
}

/* ── Toggle Button Area ── */
.why-check-toggle-area {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eef3ff;
    margin-top: 10px;
}

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

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

@media screen and (max-width: 600px) {
    .why-checklist-section {
        padding: 40px 16px;
    }
    .why-check-grid {
        grid-template-columns: 1fr;
    }
    .why-check-card {
        padding: 20px 18px;
    }
    .why-checklist-box {
        padding: 28px 16px 22px;
        border-radius: 14px;
    }
    .why-checklist-header h2 {
        font-size: 1.6rem;
    }
    .why-checklist-tabs {
        gap: 8px;
    }
    .why-tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}


/* =============================================
   WHY STATS SECTION
   ============================================= */
.why-stats-section {
    padding: 50px 20px;
}

.why-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.why-stat-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 10px 30px;
}

.why-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.why-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.why-stat-divider {
    width: 1px;
    height: 50px;
    background: #ddeaff;
    flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .why-stat-divider {
        display: none;
    }
    .why-stat-item {
        flex: 1 1 45%;
        padding: 16px 10px;
    }
    .why-stat-number {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 400px) {
    .why-stat-item {
        flex: 1 1 100%;
    }
}


/* =============================
   WHY PAGE TESTIMONIALS
============================= */
.why-testimonials-section {
    padding: 35px 20px;
    background: linear-gradient(135deg, #1a3a63 0%, #2c5aa0 100%);
    color: #fff;
}

.why-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-testimonials-header {
    text-align: center;
    margin-bottom: 25px;
}

.why-testimonials-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.why-testimonials-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.why-slider-outer-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.why-slider-window {
    overflow: hidden;
    width: 100%;
}

.why-testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-testimonial-card {
    background: #fff;
    padding: 18px 20px;
    border-radius: var(--radius-card);
    min-width: 0;
    flex: 0 0 calc(33.333% - 14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
    overflow: hidden;
}

.why-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.why-stars {
    color: #ffb400;
    margin-bottom: 10px;
    font-size: 1rem;
}

.why-testimonial-text {
    color: var(--text);
    font-style: italic;
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.55;
}

.why-testimonial-author {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary);
    margin-top: auto;
}

.why-client-tag {
    font-weight: 400;
    font-size: 0.82rem;
    color: var(--accent);
    margin-left: 6px;
}

.why-slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
}

.why-slider-arrow:hover {
    background: #fff;
    color: var(--primary);
}

.why-testimonials-cta {
    text-align: center;
    margin-top: 25px;
}

@media screen and (max-width: 1100px) {
    .why-testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .why-testimonial-card {
        flex: 0 0 100%;
    }
    .why-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}


/* =============================================
   WHY FINAL CTA SECTION
   ============================================= */
.why-final-cta {
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    font-family: var(--font);
}

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

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

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

.why-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;
}

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

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

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

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

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

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

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

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