/* Graphic Design Page Styles */

/* Hero Section */
.graphic-design-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.graphic-design-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.graphic-design-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    margin-bottom: 3rem;
}

.hero-actions .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Design Showcase */
.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.design-showcase {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

.design-showcase:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.design-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.design-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.design-item:nth-child(2) {
    animation-delay: -1s;
}

.design-item:nth-child(3) {
    animation-delay: -2s;
}

.design-item:nth-child(4) {
    animation-delay: -0.5s;
}

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

/* Logo Design Item */
.design-item.logo .design-preview {
    text-align: center;
    padding: 20px 0;
}

.design-item.logo i {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 10px;
    display: block;
}

.design-item.logo span {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Brochure Design Item */
.design-item.brochure .design-preview {
    height: 80px;
}

.brochure-lines {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 8px;
}

.brochure-lines:nth-child(2) {
    width: 80%;
}

.brochure-lines:nth-child(3) {
    width: 60%;
    margin-bottom: 12px;
}

.brochure-image {
    height: 40px;
    background: linear-gradient(135deg, #dc3545, #6366f1);
    border-radius: 6px;
}

/* Business Card Design Item */
.design-item.business-card .design-preview {
    height: 80px;
}

.card-header {
    height: 20px;
    background: #2c3e50;
    border-radius: 4px;
    margin-bottom: 10px;
}

.card-content {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 6px;
}

.card-content:nth-child(3) {
    width: 70%;
}

.card-content:nth-child(4) {
    width: 50%;
}

/* Social Post Design Item */
.design-item.social-post .design-preview {
    height: 80px;
}

.post-image {
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border-radius: 6px;
    margin-bottom: 8px;
}

.post-text {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    width: 80%;
}

/* Section Headers */
.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Card Modern */
.feature-card-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-modern .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: white;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.feature-card-modern .feature-icon-wrapper.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-card-modern .feature-icon-wrapper.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-card-modern .feature-icon-wrapper.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-card-modern .feature-icon-wrapper.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.feature-card-modern h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-card-modern p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Industry Cards */
.industry-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(45deg, #dc3545, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-icon i {
    font-size: 1.5rem;
    color: white;
}

.industry-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.industry-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-card li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.industry-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Design Process */
.design-process {
    background: #f8f9fa;
}

.process-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-number {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.process-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.process-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-step h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-step p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions .btn {
    margin-bottom: 1rem;
    margin-right: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .design-showcase {
        transform: none;
        margin-top: 2rem;
        max-width: 350px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 auto;
        text-align: center;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .design-showcase {
        max-width: 300px;
    }
    
    .design-grid {
        gap: 15px;
        padding: 15px;
    }
    
    .design-item {
        padding: 15px;
    }
    
    .hero-actions {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 0.75rem auto;
    }
    
    .cta-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .cta-title {
        font-size: 1.75rem !important;
    }
    
    .design-showcase {
        max-width: 280px;
    }
    
    .design-grid {
        gap: 10px;
        padding: 10px;
    }
    
    .design-item {
        padding: 10px;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}
