/* ============================================
   DUAL IMAGES SECTION — Premium Showcase
   ============================================ */

.dual-images-section {
    position: relative;
    background: #fafafa;
}

/* Section Header — matches site-wide pattern */
.dual-images-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Image Grid */
.dual-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Card */
.dual-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.dual-image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.dual-image-card:hover::before {
    border-color: var(--primary-background, #7d1d60);
}

/* Image */
.dual-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dual-image-card:hover img {
    transform: scale(1.06);
}

/* Gradient Overlay */
.dual-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 30%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.dual-image-card:hover .dual-image-overlay {
    opacity: 0.9;
}

/* Category Tag */
.dual-image-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.dual-image-tag .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-background, #7d1d60);
}

.dual-image-card:hover .dual-image-tag {
    background: var(--primary-background, #7d1d60);
    color: #fff;
    box-shadow: 0 4px 16px rgba(125, 29, 96, 0.3);
}

.dual-image-card:hover .dual-image-tag .tag-dot {
    background: #fff;
}

/* Content Area */
.dual-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px;
    z-index: 2;
}

.dual-image-content h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.dual-image-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* CTA Link inside card */
.dual-image-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    transform: translateY(8px);
    opacity: 0;
}

.dual-image-card:hover .dual-image-cta {
    transform: translateY(0);
    opacity: 1;
}

.dual-image-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.dual-image-cta svg {
    transition: transform 0.3s ease;
}

.dual-image-card:hover .dual-image-cta svg {
    transform: translateX(3px);
}

/* Placeholder when no image */
.dual-image-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.dual-image-placeholder span {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .dual-image-card img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .dual-images-section {
        padding: 48px 0;
    }

    .dual-images-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dual-images-title {
        font-size: 1.75rem;
    }

    .dual-images-header {
        margin-bottom: 32px;
    }

    .dual-image-card img {
        height: 280px;
    }

    .dual-image-content {
        padding: 20px;
    }

    .dual-image-content h3 {
        font-size: 1.2rem;
    }

    .dual-image-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .dual-image-card img {
        height: 240px;
    }

    .dual-image-tag {
        top: 12px;
        left: 12px;
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .dual-image-content {
        padding: 16px;
    }
}