/* Import base styles from website design */
@import url('website-design-style.css');

/* Motion Graphics Hero Section Specific Styles */
.motion-hero-section {
    background: #F9F6F0;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.motion-hero-section .hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.motion-hero-section .hero-text {
    flex: 1;
    max-width: 500px;
}

.motion-hero-section .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.motion-hero-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.motion-hero-section .hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Motion Graphics Mockup Styles */
.motion-mockup {
    position: relative;
    width: 450px;
    height: 350px;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 220px;
    background: #2c2c2c;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
}

.player-header {
    background: #1a1a1a;
    padding: 12px 16px;
    border-bottom: 1px solid #333;
}

.player-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.control-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    position: relative;
}

.control-btn.play {
    background: #F5C842;
    position: relative;
}

.control-btn.play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid #1a1a1a;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.control-btn.skip-back,
.control-btn.skip-forward {
    background: #444;
}

.player-content {
    padding: 20px;
    height: calc(100% - 50px);
    position: relative;
}

.animation-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.animated-circle.circle-1 {
    width: 60px;
    height: 60px;
    background: #F5C842;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.animated-circle.circle-2 {
    width: 40px;
    height: 40px;
    background: #FF6B35;
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.animated-path {
    position: absolute;
    top: 40%;
    left: 30%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #F5C842, #FF6B35);
    border-radius: 1px;
    animation: pathGlow 3s ease-in-out infinite;
}

.motion-blocks {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.motion-block {
    width: 20px;
    height: 30px;
    border-radius: 4px;
    animation: blockMove 1.5s ease-in-out infinite;
}

.motion-block.block-1 {
    background: #4A90E2;
    animation-delay: 0s;
}

.motion-block.block-2 {
    background: #7B68EE;
    animation-delay: 0.3s;
}

.motion-block.block-3 {
    background: #50C878;
    animation-delay: 0.6s;
}

/* Timeline Panel */
.timeline-panel {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #FF6B35, #F5C842);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 3;
}

.timeline-tracks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.track {
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    animation: trackProgress 3s ease-in-out infinite;
}

.track.track-1::after {
    width: 70%;
    animation-delay: 0s;
}

.track.track-2::after {
    width: 45%;
    animation-delay: 0.5s;
}

.track.track-3::after {
    width: 85%;
    animation-delay: 1s;
}

/* Floating Elements */
.motion-mockup .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.motion-mockup .float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.motion-mockup .float-element.element-1 {
    width: 80px;
    height: 80px;
    background: #FFE4B5;
    top: 5%;
    left: 5%;
    animation: motionFloat 8s ease-in-out infinite;
}

.motion-mockup .float-element.element-2 {
    width: 60px;
    height: 60px;
    background: #FFB6C1;
    top: 70%;
    left: 10%;
    animation: motionFloat 10s ease-in-out infinite reverse;
}

.motion-mockup .float-element.element-3 {
    width: 70px;
    height: 70px;
    background: #E6E6FA;
    top: 15%;
    right: 5%;
    animation: motionFloat 9s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes pathGlow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(245, 200, 66, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(245, 200, 66, 0.6); }
}

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

@keyframes trackProgress {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

@keyframes motionFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(120deg); }
    66% { transform: translateY(-5px) rotate(240deg); }
}

/* Application Areas Section */
.application-areas-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.application-areas-section .section-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 800px;
}

.application-areas-section .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.application-areas-section .title-highlight {
    color: #1a1a1a;
    font-weight: 700;
}

.application-areas-section .section-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
    max-width: 700px;
}

.see-examples-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C842;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.see-examples-btn:hover {
    background: #e6b73a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 200, 66, 0.3);
}

.see-examples-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.see-examples-btn:hover i {
    transform: translateY(2px);
}

/* Application Areas Grid */
.application-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.application-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.02), rgba(255, 107, 53, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.application-card:hover::before {
    opacity: 1;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(245, 200, 66, 0.2);
}

.card-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.area-icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.application-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .motion-hero-section .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .motion-hero-section .hero-title {
        font-size: 36px;
    }
    
    .motion-hero-section .hero-description {
        font-size: 16px;
    }
    
    .motion-mockup {
        width: 350px;
        height: 280px;
    }
    
    .video-player {
        width: 280px;
        height: 180px;
    }
    
    .timeline-panel {
        width: 160px;
        height: 100px;
        bottom: 10px;
    }
    
    /* Application Areas Mobile Styles */
    .application-areas-section {
        padding: 60px 0;
    }
    
    .application-areas-section .section-title {
        font-size: 32px;
    }
    
    .application-areas-section .section-description {
        font-size: 16px;
    }
    
    .application-areas-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    .application-card {
        padding: 24px 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 14px;
    }
}

/* Benefits of Motion Graphics Section */
.benefits-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.benefits-title .title-highlight {
    color: #1a1a1a;
    font-weight: 700;
}

.benefits-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon .icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.benefit-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.benefit-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 280px;
    margin: 0 auto;
}

/* Benefits Mobile Styles - Add to existing mobile media query */
@media (max-width: 768px) {
    .motion-hero-section .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .motion-hero-section .hero-title {
        font-size: 36px;
    }
    
    .motion-hero-section .hero-description {
        font-size: 16px;
    }
    
    .motion-mockup {
        width: 350px;
        height: 280px;
    }
    
    .video-player {
        width: 280px;
        height: 180px;
    }
    
    .timeline-panel {
        width: 160px;
        height: 100px;
        bottom: 10px;
    }
    
    /* Application Areas Mobile Styles */
    .application-areas-section {
        padding: 60px 0;
    }
    
    .application-areas-section .section-title {
        font-size: 32px;
    }
    
    .application-areas-section .section-description {
        font-size: 16px;
    }
    
    .application-areas-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    .application-card {
        padding: 24px 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    /* Benefits Mobile Styles */
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-title {
        font-size: 32px;
    }
    
    .benefits-description {
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .benefit-title {
        font-size: 18px;
    }
    
    .benefit-description {
        font-size: 14px;
        max-width: 100%;
    }
}

/* Motion Graphics Production Process Section */
.production-process-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.process-header {
    position: sticky;
    top: 100px;
}

.process-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.process-title .title-highlight {
    color: #B8860B;
    font-weight: 700;
}

.process-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeIn 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }

.step-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #B8860B;
    min-width: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Process Animation */
@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Mobile Styles */
@media (max-width: 768px) {
    .production-process-section {
        padding: 60px 0;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-header {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .process-title {
        font-size: 32px;
    }
    
    .process-description {
        font-size: 16px;
    }
    
    .process-steps {
        gap: 32px;
    }
    
    .process-step {
        gap: 16px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
}

/* Landing Page Design Hero Section */
.landing-hero-section {
    background: #F9F6F0;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.landing-hero-section .hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-hero-section .hero-text {
    flex: 1;
    max-width: 500px;
}

.landing-hero-section .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.landing-hero-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.landing-hero-section .hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Landing Page Mockup */
.landing-mockup {
    position: relative;
    width: 450px;
    height: 350px;
}

.landing-illustration {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape.shape-1 {
    width: 20px;
    height: 20px;
    background: #F5C842;
    top: 15%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape.shape-2 {
    width: 15px;
    height: 15px;
    background: #FF6B35;
    top: 70%;
    left: 20%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape.shape-3 {
    width: 25px;
    height: 25px;
    background: #E8E8E8;
    top: 20%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

.shape.shape-4 {
    width: 12px;
    height: 12px;
    background: #F5C842;
    bottom: 25%;
    right: 25%;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
    }
    33% { 
        transform: translateY(-15px) translateX(10px); 
    }
    66% { 
        transform: translateY(-5px) translateX(-8px); 
    }
}

/* Landing Page Mobile Styles */
@media (max-width: 768px) {
    .landing-hero-section .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .landing-hero-section .hero-title {
        font-size: 36px;
    }
    
    .landing-hero-section .hero-description {
        font-size: 16px;
    }
    
    .landing-mockup {
        width: 350px;
        height: 280px;
    }
}

/* Landing Page Impact Section */
.landing-impact-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.landing-impact-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.landing-impact-section .section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.landing-impact-section .title-highlight {
    color: #FF6B35;
    font-weight: 700;
}

.landing-impact-section .section-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Impact Areas Grid */
.impact-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.impact-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.02), rgba(255, 107, 53, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.impact-card .card-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-card .area-icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.impact-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.impact-card .card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.impact-card .card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    position: relative;
    z-index: 1;
}

/* Impact Mobile Styles */
@media (max-width: 768px) {
    .landing-impact-section {
        padding: 60px 0;
    }
    
    .landing-impact-section .section-title {
        font-size: 32px;
    }
    
    .landing-impact-section .section-description {
        font-size: 16px;
    }
    
    .impact-areas-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    .impact-card {
        padding: 24px 20px;
    }
    
    .impact-card .card-title {
        font-size: 18px;
    }
    
    .impact-card .card-description {
        font-size: 14px;
    }
}

/* Landing Page Services Section */
.landing-services-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.services-header {
    margin-bottom: 60px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.see-examples-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C842;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 10px;
}

.see-examples-btn:hover {
    background: #e6b73a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 200, 66, 0.3);
}

.see-examples-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.see-examples-btn:hover i {
    transform: translateY(2px);
}

/* Services Grid */
.landing-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.landing-services-section .service-card {
    background: #F9F6F0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.landing-services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(245, 200, 66, 0.2);
}

.landing-services-section .service-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon-img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.landing-services-section .service-card:hover .service-icon-img {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Services Mobile Styles */
@media (max-width: 768px) {
    .landing-services-section {
        padding: 60px 0;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .landing-services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .landing-services-section .service-card {
        padding: 32px 24px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 15px;
    }
}

/* Sales Improvement Section */
.sales-improvement-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.improvement-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.improvement-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.improvement-title .title-highlight {
    color: #FF6B35;
    font-weight: 700;
}

.improvement-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Improvement Features Grid */
.improvement-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.improvement-feature {
    text-align: center;
    padding: 0;
    transition: all 0.3s ease;
}

.improvement-feature:hover {
    transform: translateY(-8px);
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.improvement-feature:hover .feature-icon-img {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Improvement Quote */
.improvement-quote {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

/* Sales Improvement Mobile Styles */
@media (max-width: 768px) {
    .sales-improvement-section {
        padding: 60px 0;
    }
    
    .improvement-title {
        font-size: 32px;
    }
    
    .improvement-description {
        font-size: 16px;
    }
    
    .improvement-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .improvement-quote {
        padding: 24px 20px;
    }
    
    .quote-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .improvement-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Landing Page Design Process Section */
.landing-design-process-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.landing-design-process-section .process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.landing-design-process-section .process-header {
    position: sticky;
    top: 100px;
}

.landing-design-process-section .process-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.landing-design-process-section .process-title .title-highlight {
    color: #FF6B35;
    font-weight: 700;
}

.landing-design-process-section .process-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Landing Page Process Steps */
.landing-design-process-section .process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.landing-design-process-section .process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeIn 0.6s ease forwards;
}

.landing-design-process-section .process-step:nth-child(1) { animation-delay: 0.1s; }
.landing-design-process-section .process-step:nth-child(2) { animation-delay: 0.2s; }
.landing-design-process-section .process-step:nth-child(3) { animation-delay: 0.3s; }
.landing-design-process-section .process-step:nth-child(4) { animation-delay: 0.4s; }
.landing-design-process-section .process-step:nth-child(5) { animation-delay: 0.5s; }

.landing-design-process-section .step-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FF6B35;
    min-width: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.landing-design-process-section .step-content {
    flex: 1;
}

.landing-design-process-section .step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.landing-design-process-section .step-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Landing Page Process Mobile Styles */
@media (max-width: 768px) {
    .landing-design-process-section {
        padding: 60px 0;
    }
    
    .landing-design-process-section .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .landing-design-process-section .process-header {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .landing-design-process-section .process-title {
        font-size: 32px;
    }
    
    .landing-design-process-section .process-description {
        font-size: 16px;
    }
    
    .landing-design-process-section .process-steps {
        gap: 32px;
    }
    
    .landing-design-process-section .process-step {
        gap: 16px;
    }
    
    .landing-design-process-section .step-title {
        font-size: 18px;
    }
    
    .landing-design-process-section .step-description {
        font-size: 14px;
    }
}

/* Infographic Design Hero Mockup */
.infographic-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.tablet-device {
    position: relative;
    width: 350px;
    height: 250px;
    background: #2A2A2A;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.infographic-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chart-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

/* Pie Chart */
.pie-chart {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(
        #FF6B35 0deg 120deg,
        #F5C842 120deg 240deg,
        #E8E8E8 240deg 360deg
    );
    animation: pieRotate 3s ease-in-out infinite;
}

.pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Data Bars */
.data-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.data-bar {
    width: 12px;
    background: #F5C842;
    border-radius: 2px 2px 0 0;
    animation: barGrow 2s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.data-bar.bar-1 {
    height: 40px;
    animation-delay: 0.2s;
}

.data-bar.bar-2 {
    height: 55px;
    background: #FF6B35;
    animation-delay: 0.4s;
}

.data-bar.bar-3 {
    height: 35px;
    animation-delay: 0.6s;
}

.data-bar.bar-4 {
    height: 48px;
    background: #FF6B35;
    animation-delay: 0.8s;
}

/* Info Lines */
.info-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.info-line {
    height: 4px;
    background: #E8E8E8;
    border-radius: 2px;
    animation: lineExpand 1.5s ease-out forwards;
    transform-origin: left;
    transform: scaleX(0);
}

.info-line.line-1 {
    width: 80%;
    animation-delay: 1s;
}

.info-line.line-2 {
    width: 60%;
    animation-delay: 1.2s;
}

.info-line.line-3 {
    width: 90%;
    animation-delay: 1.4s;
}

/* Floating Circles */
.floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}

.floating-circle.circle-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.3), rgba(255, 107, 53, 0.3));
    top: -20px;
    right: -40px;
    animation: floatCircle 4s ease-in-out infinite;
}

.floating-circle.circle-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(245, 200, 66, 0.3));
    bottom: -10px;
    left: -20px;
    animation: floatCircle 3s ease-in-out infinite reverse;
}

/* Infographic Animations */
@keyframes pieRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes lineExpand {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes floatCircle {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-15px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-5px); }
}

/* Infographic Mobile Styles */
@media (max-width: 768px) {
    .infographic-mockup {
        max-width: 300px;
    }
    
    .tablet-device {
        width: 280px;
        height: 200px;
        padding: 15px;
    }
    
    .device-screen {
        padding: 15px;
    }
    
    .pie-chart {
        width: 60px;
        height: 60px;
    }
    
    .pie-chart::after {
        width: 20px;
        height: 20px;
    }
    
    .data-bars {
        height: 45px;
        gap: 6px;
    }
    
    .data-bar {
        width: 10px;
    }
    
    .data-bar.bar-1 { height: 30px; }
    .data-bar.bar-2 { height: 40px; }
    .data-bar.bar-3 { height: 25px; }
    .data-bar.bar-4 { height: 35px; }
    
    .floating-circle.circle-large {
        width: 80px;
        height: 80px;
    }
    
    .floating-circle.circle-small {
        width: 40px;
        height: 40px;
    }
}

/* Infographic Services Section */
.infographic-services-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.services-header {
    text-align: left;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    max-width: 600px;
    flex: 1;
}

.see-examples-btn {
    background: #F5C842;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 20px;
}

.see-examples-btn:hover {
    background: #F5C842;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 200, 66, 0.3);
}

.see-examples-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.see-examples-btn:hover i {
    transform: translateY(2px);
}

/* Infographic Services Grid */
.infographic-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-icon .icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon .icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    position: relative;
    z-index: 1;
}

/* Infographic Services Mobile Styles */
@media (max-width: 768px) {
    .infographic-services-section {
        padding: 60px 0;
    }
    
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 32px;
        max-width: 100%;
    }
    
    .see-examples-btn {
        align-self: flex-start;
        margin-top: 0;
    }
    
    .infographic-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .infographic-services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-title {
        font-size: 28px;
    }
}

/* PowerPoint Hero Mockup */
.powerpoint-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.presentation-stack {
    position: relative;
    width: 320px;
    height: 240px;
    margin: 0 auto;
}

.slide-card {
    position: absolute;
    width: 280px;
    height: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 20px;
    transition: all 0.3s ease;
}

.slide-card.slide-1 {
    top: 0;
    left: 0;
    background: #F5C842;
    z-index: 3;
    transform: rotate(-2deg);
    animation: slideFloat1 4s ease-in-out infinite;
}

.slide-card.slide-2 {
    top: 15px;
    left: 20px;
    background: #FF6B35;
    z-index: 2;
    transform: rotate(1deg);
    animation: slideFloat2 4s ease-in-out infinite 0.5s;
}

.slide-card.slide-3 {
    top: 30px;
    left: 40px;
    background: #fff;
    z-index: 1;
    transform: rotate(-1deg);
    animation: slideFloat3 4s ease-in-out infinite 1s;
}

/* Slide Content */
.slide-header {
    width: 60%;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    margin-bottom: 16px;
}

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

.content-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

.content-line.line-1 {
    width: 80%;
}

.content-line.line-2 {
    width: 60%;
}

.content-block {
    width: 100%;
    height: 60px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 6px;
    margin-top: 16px;
}

/* Slide 2 Chart Elements */
.slide-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
    margin-bottom: 16px;
}

.chart-bar {
    width: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px 2px 0 0;
    animation: barGrowPPT 2s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-bar.bar-1 {
    height: 40px;
    animation-delay: 0.2s;
}

.chart-bar.bar-2 {
    height: 60px;
    animation-delay: 0.4s;
}

.chart-bar.bar-3 {
    height: 35px;
    animation-delay: 0.6s;
}

.slide-circles {
    display: flex;
    gap: 12px;
    align-items: center;
}

.circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.circle.circle-dark {
    background: rgba(26, 26, 26, 0.8);
}

.circle.circle-orange {
    background: rgba(255, 255, 255, 0.9);
}

.circle.circle-light {
    background: rgba(255, 255, 255, 0.6);
}

/* Floating Shapes for PowerPoint */
.floating-shapes-ppt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-ppt {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-ppt.shape-circle-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.3), rgba(255, 107, 53, 0.3));
    top: -30px;
    right: -40px;
    animation: floatPPT1 5s ease-in-out infinite;
}

.shape-ppt.shape-circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(245, 200, 66, 0.2));
    bottom: -50px;
    left: -60px;
    animation: floatPPT2 6s ease-in-out infinite;
}

.shape-ppt.shape-circle-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.4), rgba(255, 107, 53, 0.2));
    top: 60px;
    right: -20px;
    animation: floatPPT3 4s ease-in-out infinite;
}

/* PowerPoint Animations */
@keyframes slideFloat1 {
    0%, 100% { transform: rotate(-2deg) translateY(0px); }
    50% { transform: rotate(-2deg) translateY(-8px); }
}

@keyframes slideFloat2 {
    0%, 100% { transform: rotate(1deg) translateY(0px); }
    50% { transform: rotate(1deg) translateY(-5px); }
}

@keyframes slideFloat3 {
    0%, 100% { transform: rotate(-1deg) translateY(0px); }
    50% { transform: rotate(-1deg) translateY(-3px); }
}

@keyframes barGrowPPT {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes floatPPT1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(15px); }
    66% { transform: translateY(10px) translateX(-10px); }
}

@keyframes floatPPT2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-15px) translateX(20px); }
}

@keyframes floatPPT3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(15px) translateX(-10px); }
    66% { transform: translateY(-10px) translateX(5px); }
}

/* PowerPoint Mobile Styles */
@media (max-width: 768px) {
    .powerpoint-mockup {
        max-width: 350px;
    }
    
    .presentation-stack {
        width: 280px;
        height: 200px;
    }
    
    .slide-card {
        width: 240px;
        height: 160px;
        padding: 16px;
    }
    
    .slide-chart {
        height: 60px;
        margin-bottom: 12px;
    }
    
    .chart-bar {
        width: 12px;
    }
    
    .chart-bar.bar-1 { height: 30px; }
    .chart-bar.bar-2 { height: 45px; }
    .chart-bar.bar-3 { height: 25px; }
    
    .circle {
        width: 18px;
        height: 18px;
    }
    
    .shape-ppt.shape-circle-1 {
        width: 70px;
        height: 70px;
    }
    
    .shape-ppt.shape-circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .shape-ppt.shape-circle-3 {
        width: 60px;
        height: 60px;
    }
}

/* PowerPoint Services Section */
.powerpoint-services-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.powerpoint-services-section .services-header {
    text-align: left;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.powerpoint-services-section .services-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    max-width: 600px;
    flex: 1;
}

.powerpoint-services-section .see-examples-btn {
    background: #F5C842;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 20px;
}

.powerpoint-services-section .see-examples-btn:hover {
    background: #F5C842;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 200, 66, 0.3);
}

.powerpoint-services-section .see-examples-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.powerpoint-services-section .see-examples-btn:hover i {
    transform: translateY(2px);
}

/* PowerPoint Services Grid */
.powerpoint-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.powerpoint-services-section .service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.powerpoint-services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 200, 66, 0.05), rgba(255, 107, 53, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.powerpoint-services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.powerpoint-services-section .service-card:hover::before {
    opacity: 1;
}

.powerpoint-services-section .service-icon {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.powerpoint-services-section .service-icon .icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.powerpoint-services-section .service-card:hover .service-icon .icon {
    transform: scale(1.1) rotate(5deg);
}

.powerpoint-services-section .service-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.powerpoint-services-section .service-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    position: relative;
    z-index: 1;
}

/* PowerPoint Services Mobile Styles */
@media (max-width: 768px) {
    .powerpoint-services-section {
        padding: 60px 0;
    }
    
    .powerpoint-services-section .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .powerpoint-services-section .services-title {
        font-size: 32px;
        max-width: 100%;
    }
    
    .powerpoint-services-section .see-examples-btn {
        align-self: flex-start;
        margin-top: 0;
    }
    
    .powerpoint-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .powerpoint-services-section .service-card {
        padding: 24px 20px;
    }
    
    .powerpoint-services-section .service-title {
        font-size: 18px;
    }
    
    .powerpoint-services-section .service-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .powerpoint-services-section .services-title {
        font-size: 28px;
    }
}

/* Brand Identity Hero Section */
.brand-identity-hero-section {
    background: #F9F6F0;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.brand-identity-hero-section .hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-identity-hero-section .hero-text {
    flex: 1;
    max-width: 500px;
}

.brand-identity-hero-section .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.brand-identity-hero-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.brand-identity-hero-section .hero-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Brand Identity Visual */
.brand-identity-visual {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Background Shapes */
.brand-bg-circle-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 200, 150, 0.4);
    border-radius: 50%;
    top: 20px;
    right: 30px;
    animation: brandFloat 6s ease-in-out infinite;
    z-index: 1;
}

.brand-bg-circle-2 {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 180, 120, 0.5);
    border-radius: 50%;
    bottom: 30px;
    left: 40px;
    animation: brandFloat 8s ease-in-out infinite reverse;
    z-index: 1;
}

.brand-bg-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(245, 196, 66, 0.4);
    top: 70px;
    left: 50px;
    animation: brandFloat 7s ease-in-out infinite;
    z-index: 1;
}

/* Main Logo Card */
.brand-logo-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
    transition: transform 0.3s ease;
}

.brand-logo-card:hover {
    transform: translate(-50%, -50%) translateY(-5px);
}

.brand-logo-icon {
    width: 60px;
    height: 60px;
    background: #F5C842;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-building {
    width: 32px;
    height: 32px;
    position: relative;
}

.building-structure {
    width: 100%;
    height: 100%;
    position: relative;
}

.building-roof {
    width: 24px;
    height: 8px;
    background: #fff;
    border-radius: 2px 2px 0 0;
    position: absolute;
    top: 0;
    left: 4px;
}

.building-body {
    width: 32px;
    height: 20px;
    background: #fff;
    border-radius: 0 0 2px 2px;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    padding: 2px;
}

.building-column {
    width: 3px;
    height: 14px;
    background: #F5C842;
    border-radius: 1px;
}

.brand-logo-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

/* Brand Design Cards */
.brand-design-cards {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    gap: 16px;
    z-index: 2;
}

.brand-design-card {
    width: 70px;
    height: 90px;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-design-card:hover {
    transform: translateY(-3px) scale(1.05);
}

.orange-card {
    background: linear-gradient(135deg, #FF6B35 0%, #F5A623 100%);
}

.yellow-card {
    background: linear-gradient(135deg, #F5C842 0%, #E6B73A 100%);
}

/* Orange Card Stripes */
.card-stripe {
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
    margin-bottom: 8px;
}

.stripe-1 { width: 28px; }
.stripe-2 { width: 18px; }
.stripe-3 { width: 32px; }

/* Yellow Card Content */
.yellow-card-header {
    width: 100%;
    height: 14px;
    background: rgba(255,255,255,0.9);
    border-radius: 4px;
    margin-bottom: 12px;
}

.yellow-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-line {
    height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 1px;
}

.line-short { width: 55%; }
.line-medium { width: 75%; }
.line-long { width: 100%; }

/* Animations */
@keyframes brandFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-identity-hero-section .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .brand-identity-hero-section .hero-title {
        font-size: 36px;
    }
    
    .brand-identity-visual {
        width: 300px;
        height: 250px;
    }
    
    .brand-bg-circle-1 {
        width: 100px;
        height: 100px;
    }
    
    .brand-bg-circle-2 {
        width: 70px;
        height: 70px;
    }
    
    .brand-design-cards {
        bottom: 20px;
        right: 40px;
    }
    
    .brand-design-card {
        width: 60px;
        height: 75px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .brand-identity-hero-section .hero-title {
        font-size: 28px;
    }
    
    .brand-identity-visual {
        width: 250px;
        height: 200px;
    }
    
    .brand-logo-card {
        padding: 18px;
    }
    
    .brand-logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .brand-design-cards {
        gap: 12px;
        bottom: 15px;
        right: 30px;
    }
    
    .brand-design-card {
        width: 50px;
        height: 65px;
        padding: 10px;
    }
}

/* Brand Identity Importance Section */
.brand-identity-importance-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.importance-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

/* Brand Documents Visual */
.brand-documents-visual {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.brand-documents-stack {
    position: relative;
    width: 100%;
    height: 400px;
}

/* Main Brand Document */
.brand-document {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 24px;
}

.main-doc {
    width: 300px;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-2deg);
}

.secondary-doc {
    width: 280px;
    height: 300px;
    top: 20px;
    right: 0;
    z-index: 2;
    background: rgba(173, 216, 230, 0.8);
    transform: rotate(3deg);
}

/* Document Header */
.doc-header {
    margin-bottom: 20px;
}

.doc-logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.doc-logo-placeholder {
    width: 40px;
    height: 40px;
    background: #4A90E2;
    border-radius: 8px;
}

.doc-text-lines {
    flex: 1;
}

.doc-line {
    height: 3px;
    background: #333;
    border-radius: 2px;
    margin-bottom: 6px;
}

.doc-line.short { width: 60px; }
.doc-line.medium { width: 100px; }

/* Document Content */
.doc-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title-line {
    width: 120px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.section-content-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-line {
    height: 2px;
    background: #999;
    border-radius: 1px;
    width: 180px;
}

.content-line.short { width: 120px; }

/* Brand Colors Section */
.brand-colors-section {
    margin-top: 20px;
}

.color-palette {
    display: flex;
    gap: 12px;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.color-blue { background: #87CEEB; }
.color-dark-blue { background: #4A90E2; }
.color-black { background: #333; }

/* Secondary Document */
.secondary-header {
    width: 100%;
    height: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 6px;
    margin-bottom: 16px;
}

.secondary-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.secondary-line {
    height: 2px;
    background: rgba(255,255,255,0.6);
    border-radius: 1px;
    width: 160px;
}

.secondary-line.short { width: 100px; }

/* Typography Sample */
.typography-sample {
    position: absolute;
    bottom: 20px;
    left: 60px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    z-index: 4;
    transform: rotate(-2deg);
    border-left: 4px solid #F5C842;
}

.typography-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #333;
    margin-bottom: 4px;
}

.typography-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

/* Importance Text Content */
.importance-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.importance-main {
    max-width: 500px;
}

.importance-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.importance-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Brand Beyond Section */
.brand-beyond-section {
    max-width: 450px;
}

.beyond-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.beyond-highlight {
    color: #FF6B35;
    font-weight: 700;
}

.beyond-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.see-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C842;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.see-action-btn:hover {
    background: #e6b73a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 200, 66, 0.3);
}

.see-action-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.see-action-btn:hover i {
    transform: translateX(3px);
}



/* Responsive Design for Brand Identity Importance */
@media (max-width: 768px) {
    .importance-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .brand-documents-stack {
        height: 300px;
    }
    
    .main-doc {
        width: 250px;
        height: 260px;
        position: relative;
        transform: none;
        margin: 0 auto;
    }
    
    .secondary-doc {
        display: none;
    }
    
    .typography-sample {
        position: relative;
        transform: none;
        margin: 20px auto 0;
        width: fit-content;
    }
    
    .importance-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .importance-title {
        font-size: 24px;
    }
    
    .beyond-title {
        font-size: 20px;
    }
    
    .main-doc {
        width: 200px;
        height: 220px;
        padding: 16px;
    }
}

/* Goals and Objectives Section */
.goals-objectives-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.goals-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.goals-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.goals-highlight {
    color: #FF6B35;
    font-weight: 700;
}

.goals-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.goal-card {
    text-align: center;
    padding: 20px;
}

.goal-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.goal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.goal-card:hover .goal-icon {
    transform: scale(1.1);
}

/* Credibility Icon */
.credibility-icon {
    background: linear-gradient(135deg, #87CEEB 0%, #4A90E2 100%);
}

.credibility-badge {
    position: relative;
    width: 40px;
    height: 40px;
}

.badge-star {
    width: 20px;
    height: 20px;
    background: #fff;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    position: absolute;
    top: 5px;
    left: 10px;
}

.badge-check {
    width: 12px;
    height: 6px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 8px;
    right: 8px;
}

/* Visibility Icon */
.visibility-icon {
    background: linear-gradient(135deg, #FFB347 0%, #FF8C00 100%);
}

.visibility-eye {
    position: relative;
    width: 40px;
    height: 24px;
}

.eye-outer {
    width: 40px;
    height: 24px;
    background: #fff;
    border-radius: 50px;
    position: relative;
}

.eye-inner {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 12px;
}

.eye-inner::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

/* Loyalty Icon */
.loyalty-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.loyalty-heart {
    position: relative;
    width: 32px;
    height: 32px;
}

.heart-shape {
    width: 32px;
    height: 24px;
    background: #fff;
    position: relative;
    transform: rotate(-45deg);
    border-radius: 0 0 0 8px;
}

.heart-shape::before,
.heart-shape::after {
    content: '';
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
}

.heart-shape::before {
    top: -8px;
    left: 0;
}

.heart-shape::after {
    top: 0;
    right: -8px;
}

/* Business Value Icon */
.business-value-icon {
    background: linear-gradient(135deg, #98FB98 0%, #32CD32 100%);
}

.value-chart {
    position: relative;
    width: 36px;
    height: 28px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.chart-bar {
    background: #fff;
    border-radius: 2px;
    width: 6px;
}

.bar-1 { height: 12px; }
.bar-2 { height: 18px; }
.bar-3 { height: 24px; }

.chart-arrow {
    position: absolute;
    top: -4px;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #fff;
    transform: rotate(45deg);
}

/* Goal Text */
.goal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.goal-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Goals Conclusion */
.goals-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.conclusion-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.conclusion-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design for Goals Section */
@media (max-width: 768px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .goals-title {
        font-size: 32px;
    }
    
    .conclusion-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .goals-title {
        font-size: 28px;
    }
    
    .goals-description {
        font-size: 16px;
    }
    
    .conclusion-title {
        font-size: 18px;
    }
    
    .goal-icon {
        width: 70px;
        height: 70px;
    }
}

/* Brand Identity Services Section */
.brand-services-section {
    background: #F9F6F0;
    padding: 80px 0;
    position: relative;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
}

.see-examples-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F5C842;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.see-examples-btn:hover {
    background: #e6b73a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 200, 66, 0.3);
}

.see-examples-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.see-examples-btn:hover i {
    transform: translateY(2px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Service Icons */

/* Logo and Visual Identity Icon */
.logo-identity-icon {
    background: linear-gradient(135deg, #FFE4B5 0%, #F5DEB3 100%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shapes {
    position: relative;
    width: 32px;
    height: 32px;
}

.shape-diamond {
    width: 12px;
    height: 12px;
    background: #FF6B35;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 10px;
}

.shape-circle {
    width: 16px;
    height: 16px;
    background: #F5C842;
    border-radius: 50%;
    position: absolute;
    bottom: 8px;
    left: 2px;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #4A90E2;
    position: absolute;
    bottom: 2px;
    right: 4px;
}

/* Style Guide Icon */
.style-guide-icon {
    background: linear-gradient(135deg, #E6E6FA 0%, #D8BFD8 100%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-document {
    width: 32px;
    height: 36px;
    background: #fff;
    border-radius: 4px;
    padding: 6px;
    position: relative;
}

.doc-header {
    margin-bottom: 8px;
}

.doc-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 8px;
    color: #333;
}

.doc-colors {
    display: flex;
    gap: 4px;
}

.color-box {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.color-orange { background: #FF6B35; }
.color-dark { background: #333; }

/* UX/UI Icon */
.uxui-icon {
    background: linear-gradient(135deg, #FFE4E1 0%, #FFC0CB 100%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-elements {
    position: relative;
    width: 32px;
    height: 24px;
}

.ui-dot {
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 50%;
    position: absolute;
}

.dot-1 { top: 2px; left: 4px; }
.dot-2 { top: 2px; right: 4px; }
.dot-3 { bottom: 2px; left: 12px; }

.ui-line {
    width: 20px;
    height: 2px;
    background: #FF6B35;
    position: absolute;
    bottom: 6px;
    left: 6px;
}

/* Letterhead Icon */
.letterhead-icon {
    background: linear-gradient(135deg, #F0F8FF 0%, #E0E6FF 100%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.letterhead-doc {
    width: 24px;
    height: 32px;
    background: #fff;
    border-radius: 2px;
    padding: 4px;
}

.letterhead-header {
    margin-bottom: 6px;
}

.header-line {
    height: 2px;
    background: #333;
    border-radius: 1px;
    margin-bottom: 2px;
}

.line-1 { width: 12px; }
.line-2 { width: 8px; }

.letterhead-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.content-line {
    height: 1px;
    background: #999;
    border-radius: 1px;
    width: 16px;
}

.content-line.short { width: 10px; }

/* Business Cards Icon */
.business-card-icon {
    background: linear-gradient(135deg, #FFE4CC 0%, #FFDAB9 100%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack {
    position: relative;
    width: 32px;
    height: 20px;
}

.business-card {
    width: 28px;
    height: 16px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 2;
    padding: 3px;
}

.card-2 {
    top: 2px;
    right: 0;
    z-index: 1;
    background: #f8f8f8;
}

.card-logo {
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 1px;
    margin-bottom: 2px;
}

.card-lines {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.card-line {
    height: 1px;
    background: #999;
    border-radius: 1px;
    width: 12px;
}

/* Desktop Web Design Icon */
.desktop-web-icon {
    background: linear-gradient(135deg, #E0FFFF 0%, #B0E0E6 100%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-mockup {
    position: relative;
    width: 32px;
    height: 24px;
}

.screen {
    width: 28px;
    height: 18px;
    background: #fff;
    border-radius: 2px;
    padding: 2px;
    margin-bottom: 2px;
}

.screen-header {
    height: 4px;
    margin-bottom: 2px;
}

.header-elements {
    display: flex;
    gap: 2px;
}

.element {
    height: 4px;
    border-radius: 1px;
}

.element-1 {
    width: 8px;
    background: #FF6B35;
}

.element-2 {
    width: 6px;
    background: #F5C842;
}

.screen-content {
    height: 8px;
}

.content-block {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 1px;
}

.desktop-base {
    width: 32px;
    height: 4px;
    background: #666;
    border-radius: 0 0 8px 8px;
}

/* App Design Icon */
.app-design-icon {
    background: linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 100%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-mockup {
    width: 20px;
    height: 32px;
    background: #333;
    border-radius: 4px;
    padding: 2px;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    padding: 2px;
}

.app-header {
    height: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 2px;
}

.app-dot {
    width: 3px;
    height: 3px;
    background: #FF6B35;
    border-radius: 50%;
}

.app-bar {
    flex: 1;
    height: 2px;
    background: #f0f0f0;
    border-radius: 1px;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-element {
    height: 4px;
    background: #f0f0f0;
    border-radius: 1px;
}

.app-element.small {
    height: 2px;
    width: 60%;
}

/* Digital Graphics Icon */
.digital-graphics-icon {
    background: linear-gradient(135deg, #F0FFFF 0%, #E0F6FF 100%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphics-chart {
    position: relative;
    width: 32px;
    height: 24px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.chart-elements {
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.chart-bar {
    width: 4px;
    background: #4A90E2;
    border-radius: 1px;
}

.bar-1 { height: 8px; }
.bar-2 { height: 12px; }
.bar-3 { height: 16px; }

.chart-pie {
    position: absolute;
    right: 0;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    overflow: hidden;
}

.pie-segment {
    position: absolute;
    width: 100%;
    height: 100%;
}

.segment-1 {
    background: #FF6B35;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.segment-2 {
    background: #F5C842;
    clip-path: polygon(50% 50%, 50% 0%, 0% 0%, 0% 100%, 50% 100%);
}

/* Responsive Design for Brand Services */
@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 24px;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .service-icon {
        align-self: center;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 300px !important;
        height: 100vh !important;
        background-color: #fff !important;
        flex-direction: column !important;
        padding: 4rem 1rem 2rem !important;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        display: flex !important;
        align-items: stretch !important;
    }
    
    .navbar .nav-menu.mobile-active {
        right: 0 !important;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: #333;
        border-bottom: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none !important;
        background: #f8f8f8 !important;
        margin: 0 !important;
        padding: 0.5rem 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-height: 60vh !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow-y: auto !important;
        border-left: 3px solid #F5C842 !important;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .capabilities-dropdown {
        width: 100%;
        max-height: none;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 0;
    }
    
    .service-column {
        width: 100%;
    }
    
    .service-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .capabilities-actions {
        padding: 1rem;
        border-top: 1px solid #e0e0e0;
    }
    
    .contact-section {
        display: none;
    }
}