/* UI/UX Design Page Styles */

/* ===================================
   Hero Section
   =================================== */
.uiuxHeroSection {
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.uiuxHeroGrid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.uiuxHeroContent {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.heroBadge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.08);
    margin-bottom: 20px;
}

[data-theme="dark"] .heroBadge {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(157, 78, 221, 0.3);
}

.badgeIcon {
    font-size: 20px;
}

.badgeText {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

.heroTitle {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 16px;
}

[data-theme="dark"] .heroTitle {
    color: #f1f5f9;
}

.titleGradient {
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heroDescription {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 20px;
}

.heroStats {
    display: flex;
    gap: 40px;
    padding: 0;
    margin-bottom: 24px;
}

.heroStat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.statValue {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statLabel {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.heroActions {
    display: flex;
    gap: 16px;
}

/* Hero Visual - Design Tools Mockup */
.uiuxHeroVisual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.designToolsMockup {
    position: relative;
    width: 100%;
}

.designCanvas {
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.15);
    overflow: hidden;
}

[data-theme="dark"] .designCanvas {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border-color: rgba(157, 78, 221, 0.3);
}

.canvasHeader {
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

[data-theme="dark"] .canvasHeader {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.9), rgba(30, 41, 59, 0.95));
    border-bottom-color: rgba(157, 78, 221, 0.2);
}

.canvasTab {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
}

[data-theme="dark"] .canvasTab {
    color: #94a3b8;
}

.canvasTab.active {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(92, 23, 243, 0.15);
}

[data-theme="dark"] .canvasTab.active {
    background: rgba(30, 41, 59, 0.8);
    color: #9D4EDD;
}

.canvasContent {
    padding: 40px;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

[data-theme="dark"] .canvasContent {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(7, 11, 21, 0.98));
}

.mobileFrame {
    background: white;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 200px;
}

[data-theme="dark"] .mobileFrame {
    background: rgba(30, 41, 59, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.frameHeader {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.frameDot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(92, 23, 243, 0.3);
}

.frameContent {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.designElement {
    border-radius: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.designElement.header {
    height: 40px;
    background: linear-gradient(135deg, #5C17F3, #9D4EDD);
}

.designElement.card {
    height: 80px;
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.1), rgba(157, 78, 221, 0.15));
}

.designElement.card.small {
    height: 50px;
}

.designElement.button {
    height: 35px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.floatingToolBadge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #9D4EDD, #5C17F3);
    color: white;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.4);
    animation: float 3s ease-in-out infinite;
}

.toolIcon {
    font-size: 16px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero Buttons - Same as Home Page CTA */
.btnPrimary, .btnSecondary {
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btnPrimary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .btnPrimary {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.btnPrimary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btnPrimary span {
    position: relative;
    z-index: 1;
}

.btnPrimary svg {
    position: relative;
    z-index: 1;
}

.btnPrimary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .btnPrimary:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.btnPrimary:hover::before {
    opacity: 1;
}

.btnPrimary:hover span,
.btnPrimary:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btnSecondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .btnSecondary {
    background: rgba(30, 41, 59, 0.8);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.btnSecondary:hover {
    background: rgba(30, 58, 138, 0.1);
    border-color: #1e3a8a;
}

[data-theme="dark"] .btnSecondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}


/* ===================================
   Services Section
   =================================== */
.uiuxServicesSection {
    padding: 100px 0;
    background: transparent;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 60px;
}

.sectionTitle {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.sectionSubtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.serviceCard {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.02), rgba(157, 78, 221, 0.04));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .serviceCard {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.06), rgba(157, 78, 221, 0.1));
    border-color: rgba(157, 78, 221, 0.25);
}

.serviceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(92, 23, 243, 0.15);
    border-color: var(--color-primary);
}

.serviceCard.featured {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(92, 23, 243, 0.15);
}

.cardBadge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.serviceIcon {
    font-size: 48px;
    margin-bottom: 24px;
}

.serviceTitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.serviceDescription {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.serviceFeatures {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 32px;
}

.serviceFeatures li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
    padding-left: 0;
    position: relative;
}

.serviceFeatures li::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 8px;
}

.serviceButton {
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .serviceButton {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow:
        0 8px 24px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.serviceButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.serviceButton span {
    position: relative;
    z-index: 1;
}

.serviceButton svg {
    position: relative;
    z-index: 1;
}

.serviceButton:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 138, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .serviceButton:hover {
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(59, 130, 246, 0.25);
}

.serviceButton:hover::before {
    opacity: 1;
}

.serviceButton:hover span,
.serviceButton:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ===================================
   Tools Section
   =================================== */
.uiuxToolsSection {
    padding: 100px 0;
    background: transparent;
}

.toolsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.toolCategory {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.02), rgba(157, 78, 221, 0.04));
    padding: 36px;
    border-radius: 20px;
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(92, 23, 243, 0.08);
}

[data-theme="dark"] .toolCategory {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.06), rgba(157, 78, 221, 0.1));
    border-color: rgba(157, 78, 221, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toolCategory:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(92, 23, 243, 0.15);
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.05), rgba(157, 78, 221, 0.08));
}

.categoryTitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.toolsList {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.toolTag {
    padding: 10px 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.toolTag:hover {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.08), rgba(157, 78, 221, 0.12));
    border-color: var(--color-primary);
    transform: translateX(4px);
}

/* ===================================
   Features Section
   =================================== */
.uiuxFeaturesSection {
    padding: 100px 0;
    background: transparent;
}

.featuresGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.featureCard {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.02), rgba(157, 78, 221, 0.04));
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

[data-theme="dark"] .featureCard {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.06), rgba(157, 78, 221, 0.1));
    border-color: rgba(157, 78, 221, 0.25);
}

.featureCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(92, 23, 243, 0.15);
    border-color: var(--color-primary);
}

.featureIcon {
    font-size: 48px;
    margin-bottom: 20px;
}

.featureTitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.featureDescription {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ===================================
   Process Section
   =================================== */
.uiuxProcessSection {
    padding: 100px 0;
    background: transparent;
}

.processTimeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.processStep {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.stepNumber {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(92, 23, 243, 0.3);
}

.stepContent {
    flex: 1;
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.02), rgba(157, 78, 221, 0.04));
    padding: 28px 32px;
    border-radius: 16px;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(92, 23, 243, 0.06);
}

[data-theme="dark"] .stepContent {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.06), rgba(157, 78, 221, 0.1));
    border-color: rgba(157, 78, 221, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stepContent:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(92, 23, 243, 0.15);
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.05), rgba(157, 78, 221, 0.08));
}

.stepTitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.stepDescription {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.stepDuration {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(92, 23, 243, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}

/* ===================================
   CTA Section
   =================================== */
.uiuxCtaSection {
    padding: 100px 0;
    background: transparent;
}

.ctaContent {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.03), rgba(157, 78, 221, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 80px 60px;
    border: 2px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(92, 23, 243, 0.1);
}

[data-theme="dark"] .ctaContent {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.08), rgba(157, 78, 221, 0.12));
    border-color: rgba(157, 78, 221, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ctaTitle {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 20px;
}

.ctaDescription {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ctaActions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .uiuxHeroGrid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .toolsGrid {
        grid-template-columns: 1fr;
    }

    .heroTitle {
        font-size: 42px;
    }

    .sectionTitle {
        font-size: 36px;
    }

    .floatingToolBadge {
        display: none;
    }
}

@media (max-width: 768px) {
    .uiuxHeroSection {
        padding: 80px 0 60px;
    }

    .heroTitle {
        font-size: 36px;
    }

    .heroDescription {
        font-size: 18px;
    }

    .heroStats {
        gap: 24px;
    }

    .statValue {
        font-size: 28px;
    }

    .heroActions {
        flex-direction: column;
    }

    .btnPrimary, .btnSecondary {
        width: 100%;
        justify-content: center;
    }

    .sectionTitle {
        font-size: 32px;
    }

    .servicesGrid {
        grid-template-columns: 1fr;
    }

    .featuresGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .processStep {
        flex-direction: column;
        gap: 16px;
    }

    .stepNumber {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .ctaContent {
        padding: 60px 32px;
    }

    .ctaTitle {
        font-size: 32px;
    }

    .ctaActions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .heroTitle {
        font-size: 28px;
    }

    .heroStats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .featuresGrid {
        grid-template-columns: 1fr;
    }

    .canvasContent {
        padding: 20px;
    }
}
