/* Unique Color Scheme */
:root {
    --vibrant-primary: #7B4DFF;
    --deep-primary: #5E3BE8;
    --light-primary: #9E86FF;
    --creative-accent: #FF6B8B;
    --dark-text: #1A2238;
    --medium-text: #4A5568;
    --light-bg: #F8FAFF;
    --pure-white: #FFFFFF;
    --divider-line: #E3E8F6;
    --small-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    --medium-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --large-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    --smooth-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
body {
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.visual-creative-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.artwork-container {
    display: flex;
    background: var(--pure-white);
    border-radius: 28px;
    box-shadow: var(--large-shadow);
    overflow: hidden;
    position: relative;
}

/* Content Block */
.creative-content-block {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-tag {
    display: inline-block;
    background: rgba(123, 77, 255, 0.12);
    color: var(--vibrant-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.visual-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: var(--dark-text);
    line-height: 1.2;
}

.creative-subtitle {
    font-size: 1.4rem;
    color: var(--vibrant-primary);
    margin: 0 0 2.5rem;
    font-weight: 500;
}

.art-description {
    color: var(--medium-text);
    margin: 0 0 3.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.design-offerings {
    list-style: none;
    padding: 0;
    margin: 0 0 3.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.offering-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.art-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(123, 77, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vibrant-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--smooth-transition);
}

.offering-item:hover .art-icon {
    background: var(--vibrant-primary);
    color: var(--pure-white);
    transform: rotate(10deg) scale(1.1);
}

.offering-details h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    color: var(--dark-text);
}

.offering-details p {
    color: var(--medium-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.action-area {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.main-action-btn, .secondary-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--smooth-transition);
}

.main-action-btn {
    background: var(--vibrant-primary);
    color: var(--pure-white);
    gap: 0.8rem;
}

.main-action-btn:hover {
    background: var(--deep-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 77, 255, 0.3);
}

.secondary-action-btn {
    background: transparent;
    color: var(--vibrant-primary);
    border: 1px solid var(--divider-line);
}

.secondary-action-btn:hover {
    border-color: var(--vibrant-primary);
    background: rgba(123, 77, 255, 0.05);
}

.service-notice {
    font-size: 0.85rem;
    color: var(--medium-text);
    margin: 3rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(227, 232, 246, 0.8);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.service-notice i {
    color: var(--vibrant-primary);
}

/* Visual Display Block */
.visual-display-block {
    flex: 1;
    position: relative;
    background: linear-gradient(145deg, #F1F0FF, #E4E1FF);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    overflow: hidden;
}

.artwork-frame {
    position: relative;
    width: auto;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--large-shadow);
    z-index: 2;
}

.image-column {
  flex: 1;
  background: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.artwork-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.creative-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--smooth-transition);
}

.software-badges {
    position: absolute;
    display: flex;
    gap: 1.2rem;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.app-badge {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--pure-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--medium-shadow);
    cursor: pointer;
    transition: var(--smooth-transition);
    position: relative;
}

.app-badge i {
    color: var(--vibrant-primary);
    font-size: 1.4rem;
    transition: var(--smooth-transition);
}

.app-badge:hover {
    background: var(--vibrant-primary);
    transform: translateY(-5px) scale(1.1);
}

.app-badge:hover i {
    color: var(--pure-white);
}

.app-badge::after {
    content: attr(data-app);
    position: absolute;
    top: -3.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-text);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--smooth-transition);
    white-space: nowrap;
    font-weight: 500;
}

.app-badge:hover::after {
    opacity: 1;
    visibility: visible;
    top: -3.8rem;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(123, 77, 255, 0.08);
    filter: blur(50px);
    animation: gentleFloat 10s infinite ease-in-out;
}

.floating-element-1 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -60px;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -40px;
    animation-delay: 2s;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 1280px) {
    .creative-content-block {
        padding: 4rem;
    }
    
    .visual-display-block {
        padding: 3rem;
    }
}

@media (max-width: 1024px) {
    .artwork-container {
        flex-direction: column;
    }
    
    .creative-content-block, .visual-display-block {
        padding: 4rem;
    }
    
    .visual-title {
        font-size: 2.6rem;
    }
    
    .artwork-frame {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .visual-creative-section {
        padding: 4rem 1.5rem;
    }
    
    .visual-title {
        font-size: 2.2rem;
    }
    
    .creative-subtitle {
        font-size: 1.2rem;
    }
    
    .action-area {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .creative-content-block, .visual-display-block {
        padding: 2.5rem 1.5rem;
    }
    
    .visual-title {
        font-size: 2rem;
    }
    
    .offering-item {
        flex-direction: column;
    }
    
    .offering-details {
        margin-top: 0.8rem;
    }
    
    .software-badges {
        bottom: 1.5rem;
    }
}