﻿/* ==================== WHY US HERO SECTION ==================== */
.whyus-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.whyus-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .whyus-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.65) 100%);
        z-index: 2;
    }

    .whyus-hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7);
    }

.whyus-breadcrumb-nav {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.whyus-breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

    .whyus-breadcrumb-link:hover,
    .whyus-breadcrumb-link.active {
        color: #ffffff;
    }

.whyus-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.whyus-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.whyus-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 1100px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: whyusFadeInUp 0.8s ease-out;
}

.whyus-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 900px;
    line-height: 1.5;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: whyusFadeInUp 0.8s ease-out 0.2s both;
}

.whyus-hero-buttons {
    display: flex;
    gap: 20px;
    animation: whyusFadeInUp 0.8s ease-out 0.4s both;
}

.whyus-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    cursor: pointer;
}

.whyus-btn-primary {
    background: linear-gradient(135deg, #e6b960 0%, #d4a255 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 162, 85, 0.3);
}

    .whyus-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 162, 85, 0.5);
        background: linear-gradient(135deg, #f0c570 0%, #e0b265 100%);
    }

.whyus-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

    .whyus-btn-secondary:hover {
        transform: translateY(-3px);
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }

.whyus-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.whyus-btn:hover svg {
    transform: translateX(4px);
}

@keyframes whyusFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .whyus-hero-title {
        font-size: 48px;
    }

    .whyus-hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .whyus-breadcrumb-nav {
        left: 40px;
    }

    .whyus-hero-content {
        padding: 0 40px;
    }

    .whyus-hero-title {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .whyus-hero-subtitle {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .whyus-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .whyus-hero-section {
        min-height: 500px;
    }

    .whyus-breadcrumb-nav {
        left: 20px;
        font-size: 10px;
    }

    .whyus-breadcrumb-separator {
        font-size: 13px;
    }

    .whyus-hero-content {
        padding: 0 20px;
    }

    .whyus-hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .whyus-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .whyus-hero-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
    }

    .whyus-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .whyus-hero-title {
        font-size: 28px;
    }

    .whyus-hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .whyus-btn {
        padding: 13px 24px;
        font-size: 14px;
    }

        .whyus-btn svg {
            width: 16px;
            height: 16px;
        }
}

/* ==================== PREMIUM EXCELLENCE SECTION ==================== */
.whyus-premium-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.whyus-premium-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Text Content */
.whyus-premium-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.whyus-premium-label {
    font-size: 18px;
    font-weight: 600;
    color: #d4a255;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-block;
}

.whyus-premium-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.whyus-premium-description {
    font-size: 16px;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
}

    .whyus-premium-description + .whyus-premium-description {
        margin-top: 16px;
    }

/* Right Side - Image */
.whyus-premium-image {
    width: 100%;
    height: 100%;
    position: relative;
}

    .whyus-premium-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        object-fit: cover;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        display: block;
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .whyus-premium-container {
        gap: 60px;
    }

    .whyus-premium-title {
        font-size: 38px;
    }

    .whyus-premium-description {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .whyus-premium-section {
        padding: 80px 20px;
    }

    .whyus-premium-container {
        gap: 50px;
    }

    .whyus-premium-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .whyus-premium-section {
        padding: 60px 20px;
    }

    .whyus-premium-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whyus-premium-content {
        gap: 20px;
        order: 1;
    }

    .whyus-premium-label {
        font-size: 16px;
    }

    .whyus-premium-title {
        font-size: 30px;
    }

    .whyus-premium-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .whyus-premium-image {
        order: 2;
    }

        .whyus-premium-image img {
            border-radius: 15px;
        }
}

@media (max-width: 480px) {
    .whyus-premium-section {
        padding: 50px 15px;
    }

    .whyus-premium-content {
        gap: 18px;
    }

    .whyus-premium-label {
        font-size: 15px;
    }

    .whyus-premium-title {
        font-size: 26px;
    }

    .whyus-premium-description {
        font-size: 14px;
        line-height: 1.6;
    }

        .whyus-premium-description + .whyus-premium-description {
            margin-top: 14px;
        }
}

/* ==================== STATS SECTION ==================== */
.whyus-stats-section {
    padding: 80px 20px;
    background-color: #2a2a2a;
}

.whyus-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.whyus-stat-item {
    text-align: center;
    padding: 20px;
}

.whyus-stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #d4a255;
    margin-bottom: 16px;
    line-height: 1;
}

.whyus-stat-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.whyus-stat-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    max-width: 350px;
    margin: 0 auto;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .whyus-stats-section {
        padding: 70px 20px;
    }

    .whyus-stats-container {
        gap: 50px;
    }

    .whyus-stat-number {
        font-size: 56px;
    }

    .whyus-stat-title {
        font-size: 22px;
    }

    .whyus-stat-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .whyus-stats-section {
        padding: 60px 20px;
    }

    .whyus-stats-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .whyus-stat-number {
        font-size: 52px;
    }

    .whyus-stat-title {
        font-size: 20px;
    }

    .whyus-stat-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .whyus-stats-section {
        padding: 50px 15px;
    }

    .whyus-stats-container {
        gap: 40px;
    }

    .whyus-stat-item {
        padding: 15px;
    }

    .whyus-stat-number {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .whyus-stat-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .whyus-stat-desc {
        font-size: 14px;
    }
}
/* ==================== PROCESS SECTION ==================== */
.whyus-process-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.whyus-process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.whyus-process-header {
    text-align: center;
    margin-bottom: 70px;
}

.whyus-process-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.whyus-process-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #a8a8a8;
    max-width: 700px;
    margin: 0 auto;
}

.whyus-process-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    align-items: start;
}

/* Left Side - Image */
.whyus-process-left {
    position: relative;
}

.whyus-process-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

    .whyus-process-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.whyus-time-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #f0c977 0%, #e6b960 100%);
    border-radius: 12px;
    padding: 18px 28px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(230, 185, 96, 0.4);
}

.whyus-time-number {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 2px;
}

.whyus-time-label {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
}

/* Right Side - Features */
.whyus-process-right {
    padding-top: 10px;
}

.whyus-features-title {
    font-size: 36px;
    font-weight: 700;
    color: #e6b960;
    margin-bottom: 10px;
    line-height: 1.2;
}

.whyus-features-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 35px 0;
}

.whyus-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.whyus-features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.whyus-feature-box {
    background: #e5e5e5;
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

    .whyus-feature-box:hover {
        background: #d8d8d8;
        transform: translateX(5px);
    }

.whyus-check-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: #ffffff;
    border-radius: 50%;
    padding: 5px;
}

.whyus-feature-label {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .whyus-process-content {
        grid-template-columns: 42% 58%;
        gap: 40px;
    }

    .whyus-features-title {
        font-size: 32px;
    }

    .whyus-features-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .whyus-process-section {
        padding: 80px 20px;
    }

    .whyus-process-title {
        font-size: 36px;
    }

    .whyus-process-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .whyus-features-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .whyus-process-section {
        padding: 60px 20px;
    }

    .whyus-process-header {
        margin-bottom: 50px;
    }

    .whyus-process-title {
        font-size: 30px;
    }

    .whyus-process-subtitle {
        font-size: 15px;
    }

    .whyus-time-badge {
        top: 20px;
        right: 20px;
        padding: 16px 24px;
    }

    .whyus-time-number {
        font-size: 36px;
    }

    .whyus-features-title {
        font-size: 28px;
    }

    .whyus-features-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .whyus-features-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .whyus-feature-box {
        padding: 16px 20px;
    }

    .whyus-feature-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .whyus-process-title {
        font-size: 26px;
    }

    .whyus-process-subtitle {
        font-size: 14px;
    }

    .whyus-process-image {
        border-radius: 15px;
    }

    .whyus-time-badge {
        top: 15px;
        right: 15px;
        padding: 14px 20px;
    }

    .whyus-time-number {
        font-size: 32px;
    }

    .whyus-time-label {
        font-size: 14px;
    }

    .whyus-features-title {
        font-size: 24px;
    }

    .whyus-features-subtitle {
        font-size: 15px;
    }

    .whyus-feature-box {
        padding: 15px 18px;
        gap: 12px;
    }

    .whyus-check-icon {
        width: 24px;
        height: 24px;
    }

    .whyus-feature-label {
        font-size: 13px;
    }
}
/* ==================== SHOWROOM SECTION ==================== */
.whyus-showroom-section {
    position: relative;
    padding: 100px 20px 120px;
    overflow: hidden;
}

.whyus-showroom-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .whyus-showroom-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.whyus-showroom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 100%);
}

.whyus-showroom-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.whyus-showroom-header {
    text-align: center;
    margin-bottom: 70px;
}

.whyus-showroom-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
}

.whyus-showroom-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
}

.whyus-showroom-content {
    max-width: 1200px;
    margin: 0 auto;
}

.whyus-showroom-heading {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
}

.whyus-showroom-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 1000px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
}

.whyus-showroom-card {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.whyus-info-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whyus-info-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: capitalize;
}

.whyus-info-text {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.whyus-info-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .whyus-info-link:hover {
        color: #d4a255;
    }

.whyus-info-button {
    justify-content: center;
}

.whyus-location-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e6b960 0%, #d4a255 100%);
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 162, 85, 0.3);
}

    .whyus-location-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 162, 85, 0.5);
        background: linear-gradient(135deg, #f0c570 0%, #e0b265 100%);
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .whyus-showroom-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding: 35px 40px;
    }

    .whyus-info-button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .whyus-showroom-section {
        padding: 80px 20px 100px;
    }

    .whyus-showroom-title {
        font-size: 42px;
    }

    .whyus-showroom-subtitle {
        font-size: 17px;
    }

    .whyus-showroom-heading {
        font-size: 28px;
    }

    .whyus-showroom-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .whyus-showroom-section {
        padding: 60px 20px 80px;
    }

    .whyus-showroom-header {
        margin-bottom: 50px;
    }

    .whyus-showroom-title {
        font-size: 36px;
    }

    .whyus-showroom-subtitle {
        font-size: 16px;
    }

    .whyus-showroom-heading {
        font-size: 26px;
    }

    .whyus-showroom-desc {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .whyus-showroom-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 25px;
    }

    .whyus-info-section {
        gap: 10px;
    }

    .whyus-info-title {
        font-size: 15px;
    }

    .whyus-info-text {
        font-size: 14px;
    }

    .whyus-location-btn {
        width: 100%;
        text-align: center;
        padding: 15px 32px;
    }
}

@media (max-width: 480px) {
    .whyus-showroom-section {
        padding: 50px 15px 70px;
    }

    .whyus-showroom-title {
        font-size: 30px;
    }

    .whyus-showroom-subtitle {
        font-size: 15px;
    }

    .whyus-showroom-heading {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .whyus-showroom-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .whyus-showroom-card {
        padding: 25px 20px;
        gap: 25px;
        border-radius: 15px;
    }

    .whyus-info-title {
        font-size: 14px;
    }   

    .whyus-info-text {
        font-size: 13px;
    }

    .whyus-location-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}
