/* ==========================================================================
   DC Page Hero — Modern asymmetric layout
   ========================================================================== */

:root {
    --dc-primary: #ef7a17;
    --dc-secondary: #032038;
}

/* ---------- Section ---------- */
.dc-page-hero {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, #f7f8fb 100%);
    width: 100%;
    overflow: hidden;
    padding: 0;
}

/* ---------- Background shapes ---------- */
.dc-page-hero__bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dc-page-hero__bg-shape--1 {
    width: 600px;
    height: 600px;
    top: -220px;
    right: -120px;
    background: radial-gradient(circle, rgba(239, 122, 23, 0.04) 0%, transparent 70%);
}

.dc-page-hero__bg-shape--2 {
    width: 400px;
    height: 400px;
    bottom: -140px;
    left: -100px;
    background: radial-gradient(circle, rgba(3, 32, 56, 0.03) 0%, transparent 70%);
}

/* ---------- Container ---------- */
.dc-page-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0px 0px;
}

/* ---------- Grid ---------- */
.dc-page-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    min-height: 480px;
}

/* ==========================================================================
   LEFT COLUMN — Content
   ========================================================================== */
.dc-page-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
}

/* ---------- Breadcrumbs ---------- */
.dc-page-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    font-size: 0.825rem;
    font-weight: 500;
}

.dc-page-hero__breadcrumbs a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.dc-page-hero__breadcrumbs a:hover {
    color: var(--dc-primary);
}

.dc-page-hero__breadcrumbs-sep {
    color: #d1d5db;
    display: flex;
}

.dc-page-hero__breadcrumbs-current {
    color: var(--dc-secondary);
    font-weight: 600;
}

/* ---------- Label ---------- */
.dc-page-hero__label {
    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;
}

.dc-page-hero__label-dot {
    display: none;
}

/* ---------- Title ---------- */
.dc-page-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dc-secondary);
    line-height: 1.12;
    margin: 0 0 18px 0;
    letter-spacing: -0.02em;
}

.dc-page-hero__title-accent {
    color: var(--dc-primary);
    position: relative;
}

/* ---------- Subtitle ---------- */
.dc-page-hero__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.08rem;
    color: #6b7280;
    max-width: 480px;
    line-height: 1.75;
    margin: 0 0 32px 0;
}

/* ---------- CTA Buttons ---------- */
.dc-page-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.dc-page-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dc-page-hero__cta--primary {
    background: var(--dc-primary);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(239, 122, 23, 0.30);
}

.dc-page-hero__cta--primary:hover {
    background: #e06a08;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 122, 23, 0.35);
}

.dc-page-hero__cta--primary svg {
    transition: transform 0.2s ease;
}

.dc-page-hero__cta--primary:hover svg {
    transform: translateX(3px);
}

.dc-page-hero__cta--ghost {
    background: transparent;
    color: var(--dc-secondary);
    border: 2px solid #e5e7eb;
}

.dc-page-hero__cta--ghost:hover {
    border-color: var(--dc-secondary);
    background: rgba(3, 32, 56, 0.03);
    color: var(--dc-secondary);
}

/* ---------- USPs ---------- */
.dc-page-hero__usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.dc-page-hero__usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dc-page-hero__usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    color: var(--dc-primary);
}

.dc-page-hero__usp-icon svg {
    width: 18px;
    height: 18px;
}

.dc-page-hero__usp-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
}

/* ==========================================================================
   RIGHT COLUMN — Visual composition
   ========================================================================== */
.dc-page-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.dc-page-hero__visual-inner {
    position: relative;
    width: 100%;
    max-width: 520px;
}

/* ---------- Primary image ---------- */
.dc-page-hero__img-primary {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(3, 32, 56, 0.12), 0 0 0 1px rgba(3, 32, 56, 0.04);
}

.dc-page-hero__img-primary img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dc-page-hero__visual:hover .dc-page-hero__img-primary img {
    transform: scale(1.03);
}

/* ---------- Secondary image ---------- */
.dc-page-hero__img-secondary {
    position: absolute;
    z-index: 3;
    bottom: -24px;
    left: -32px;
    width: 180px;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(3, 32, 56, 0.15);
    border: 3px solid #ffffff;
}

.dc-page-hero__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Floating badge ---------- */
.dc-page-hero__badge {
    position: absolute;
    z-index: 4;
    top: 20px;
    left: -28px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dc-secondary);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(3, 32, 56, 0.25);
    animation: dc-hero-float 3.5s ease-in-out infinite;
}

.dc-page-hero__badge svg {
    color: var(--dc-primary);
    flex-shrink: 0;
}

@keyframes dc-hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Floating rating ---------- */
.dc-page-hero__rating {
    position: absolute;
    z-index: 4;
    bottom: -12px;
    right: -12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(3, 32, 56, 0.12);
    animation: dc-hero-float 4s ease-in-out infinite 0.5s;
}

.dc-page-hero__rating-stars {
    display: flex;
    gap: 2px;
    color: #facc15;
}

.dc-page-hero__rating-score {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dc-secondary);
}

.dc-page-hero__rating-label {
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .dc-page-hero__grid {
        gap: 36px;
        min-height: auto;
    }

    .dc-page-hero__title {
        font-size: 2.5rem;
    }

    .dc-page-hero__img-primary img {
        height: 320px;
    }

    .dc-page-hero__img-secondary {
        width: 150px;
        height: 110px;
        left: -16px;
        bottom: -16px;
    }

    .dc-page-hero__badge {
        left: -12px;
    }

    .dc-page-hero__rating {
        right: -6px;
    }
}

@media (max-width: 768px) {
    .dc-page-hero__container {
        padding: 36px 16px 0;
    }

    .dc-page-hero__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dc-page-hero__content {
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .dc-page-hero__breadcrumbs {
        justify-content: center;
    }

    .dc-page-hero__title {
        font-size: 2.15rem;
    }

    .dc-page-hero__subtitle {
        font-size: 1rem;
    }

    .dc-page-hero__actions {
        justify-content: center;
    }

    .dc-page-hero__usps {
        grid-template-columns: 1fr 1fr;
        justify-items: start;
    }

    .dc-page-hero__visual-inner {
        max-width: 420px;
    }

    .dc-page-hero__img-primary img {
        height: 260px;
    }

    .dc-page-hero__img-secondary {
        width: 130px;
        height: 95px;
        left: 0;
        bottom: -12px;
    }

    .dc-page-hero__badge {
        left: 0;
        top: 12px;
        font-size: 0.72rem;
        padding: 8px 14px;
    }

    .dc-page-hero__rating {
        right: 0;
        bottom: -8px;
        padding: 8px 12px;
    }

}

@media (max-width: 480px) {
    .dc-page-hero__title {
        font-size: 1.75rem;
    }

    .dc-page-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .dc-page-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .dc-page-hero__usps {
        grid-template-columns: 1fr 1fr;
        gap: 6px 12px;
    }

    .dc-page-hero__usp-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .dc-page-hero__usp-icon svg {
        width: 14px;
        height: 14px;
    }

    .dc-page-hero__usp-text {
        font-size: 0.75rem;
    }

    .dc-page-hero__img-primary img {
        height: 220px;
        border-radius: 14px;
    }

    .dc-page-hero__img-secondary {
        display: none;
    }
}
