/* ==========================================
   DC Content Block (Why Choose Us)
   ========================================== */

.dc-why {
    --dc-primary: #ef7a17;
    --dc-primary-rgb: 239,122,23;
    --dc-secondary: #032038;
    --dc-secondary-rgb: 3,32,56;
}

.dc-why * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================
   MAIN CONTAINER
========================================== */
.dc-why {
    position: relative;
    padding-bottom: 50px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
    padding: 50px 0;
}

.dc-why .dc-why__wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ==========================================
   DECORATIVE ELEMENTS
========================================== */
.dc-why .dc-why__decoration {
    position: absolute;
    pointer-events: none;
}

.dc-why .dc-why__decoration--1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--dc-primary-rgb), 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.dc-why .dc-why__decoration--2 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--dc-secondary-rgb), 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* ==========================================
   LEFT CONTENT
========================================== */
.dc-why .dc-why__content {
    animation: dc-fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes dc-fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Eyebrow */
.dc-why .dc-why__eyebrow {
    display: inline-block;
    font-family: 'Brush Script MT', 'Brush Script Std', cursive;
    font-size: 28px;
    font-weight: 400;
    color: var(--dc-primary);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Title */
.dc-why .dc-why__title {
    font-family: 'Poppins', 'DM Sans', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--dc-secondary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.dc-why .dc-why__title-highlight {
    color: var(--dc-primary);
    position: relative;
    display: inline-block;
}

/* Description */
.dc-why .dc-why__description {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Features Title */
.dc-why .dc-why__features-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dc-secondary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dc-why .dc-why__features-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--dc-primary), transparent);
    border-radius: 1px;
}

/* Features Grid */
.dc-why .dc-why__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.dc-why .dc-why__feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    animation: dc-fade-in-up 0.6s ease-out forwards;
}

.dc-why .dc-why__feature:nth-child(1) { animation-delay: 0.1s; }
.dc-why .dc-why__feature:nth-child(2) { animation-delay: 0.2s; }
.dc-why .dc-why__feature:nth-child(3) { animation-delay: 0.3s; }
.dc-why .dc-why__feature:nth-child(4) { animation-delay: 0.4s; }

.dc-why .dc-why__feature:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(var(--dc-primary-rgb), 0.12);
    border-color: rgba(var(--dc-primary-rgb), 0.2);
}

.dc-why .dc-why__feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--dc-primary-rgb), 0.1), rgba(var(--dc-primary-rgb), 0.05));
    border-radius: 16px;
    color: var(--dc-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dc-why .dc-why__feature:hover .dc-why__feature-icon {
    background: linear-gradient(135deg, var(--dc-primary), #ff9a44);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

.dc-why .dc-why__feature-icon svg {
    width: 26px;
    height: 26px;
}

.dc-why .dc-why__feature-content {
    flex: 1;
}

.dc-why .dc-why__feature-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dc-secondary);
    margin-bottom: 6px;
}

.dc-why .dc-why__feature-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Button */
.dc-why .dc-why__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--dc-primary), #ff9a44);
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(var(--dc-primary-rgb), 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.dc-why .dc-why__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.dc-why .dc-why__cta:hover::before {
    left: 100%;
}

.dc-why .dc-why__cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(var(--dc-primary-rgb), 0.4);
}

.dc-why .dc-why__cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.dc-why .dc-why__cta:hover svg {
    transform: translateX(5px);
}

/* ==========================================
   RIGHT VISUAL
========================================== */
.dc-why .dc-why__visual {
    position: relative;
    animation: dc-fade-in-right 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes dc-fade-in-right {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.dc-why .dc-why__image-wrapper {
    position: relative;
}

.dc-why .dc-why__main-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(var(--dc-secondary-rgb), 0.15);
}

.dc-why .dc-why__main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.dc-why .dc-why__main-image:hover img {
    transform: scale(1.05);
}

/* Accent Image */
.dc-why .dc-why__accent-image {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 5px solid #ffffff;
    animation: dc-float 6s ease-in-out infinite;
}

@keyframes dc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.dc-why .dc-why__accent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience Badge */
.dc-why .dc-why__experience {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--dc-primary), #ff9a44);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(var(--dc-primary-rgb), 0.4);
    border: 5px solid #ffffff;
    animation: dc-pulse-badge 3s ease-in-out infinite;
}

@keyframes dc-pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.dc-why .dc-why__experience-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.dc-why .dc-why__experience-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 4px;
}

/* Decorative Pattern */
.dc-why .dc-why__pattern {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 120px;
    height: 200px;
    opacity: 0.1;
    z-index: -1;
}

.dc-why .dc-why__pattern-line {
    width: 100%;
    height: 3px;
    background: var(--dc-secondary);
    margin-bottom: 12px;
    border-radius: 2px;
}

.dc-why .dc-why__pattern-line:nth-child(odd) {
    width: 70%;
    margin-left: auto;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1200px) {
    .dc-why .dc-why__wrapper {
        gap: 50px;
    }

    .dc-why .dc-why__experience {
        width: 110px;
        height: 110px;
        right: -10px;
        top: -10px;
    }

    .dc-why .dc-why__experience-number {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .dc-why .dc-why__wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .dc-why .dc-why__visual {
        order: -1;
        max-width: 550px;
        margin: 0 auto;
    }

    .dc-why .dc-why__content {
        text-align: center;
    }

    .dc-why .dc-why__features-title::after {
        display: none;
    }

    .dc-why .dc-why__feature {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .dc-why {
        padding: 70px 0;
    }

    .dc-why .dc-why__wrapper {
        padding: 0 20px;
    }

    .dc-why .dc-why__feature {
        padding: 20px;
    }

    .dc-why .dc-why__feature-icon {
        width: 48px;
        height: 48px;
    }

    .dc-why .dc-why__feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .dc-why .dc-why__accent-image {
        width: 140px;
        height: 140px;
        bottom: -20px;
        left: -10px;
    }

    .dc-why .dc-why__experience {
        width: 100px;
        height: 100px;
    }

    .dc-why .dc-why__experience-number {
        font-size: 26px;
    }

    .dc-why .dc-why__experience-label {
        font-size: 10px;
    }

    .dc-why .dc-why__pattern {
        display: none;
    }
}
