* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff4500;
    --secondary: #ffa500;
    --accent: #ffd700;
    --dark: #1a1a1a;
    --gray: #555;
    --light-gray: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: none;
    color: var(--dark);
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(255, 69, 0, 0.05);
}

.nav-link-portfolio {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.6rem 1.5rem;
}

.nav-link-portfolio:hover {
    background: linear-gradient(135deg, #cc3700, #cc8400);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Modern Hero Section */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

/* Floating Shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 50px) rotate(240deg);
    }
}

/* Hero Visual Graphics */
.hero-visual {
    margin: 3rem 0 2rem;
}

.hero-image-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: floatElement 4s ease-in-out infinite;
}

.graphic-element i {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.laptop {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: 2;
}

.laptop i {
    color: white;
    width: 60px;
    height: 60px;
}

.mobile {
    top: 20%;
    left: 20%;
    animation-delay: 0.5s;
}

.design {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.chart {
    bottom: 20%;
    left: 30%;
    animation-delay: 1.5s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.badge-icon {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 0.7rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--dark);
    border-radius: 0.7rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Services Section Modern */
.services-modern {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-modern {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.15);
}

.service-card-modern.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.02), rgba(255, 165, 0, 0.02));
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon-modern {
    width: 40px;
    height: 40px;
    color: var(--primary);
    z-index: 1;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.3), transparent);
    border-radius: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card-modern:hover .icon-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

.service-card-modern h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.service-card-modern p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.4rem 0.8rem;
    background: var(--light-gray);
    border-radius: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.card-hover-effect {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.service-card-modern:hover .card-hover-effect {
    opacity: 1;
    transform: translateX(0);
}

.card-hover-effect i {
    width: 18px;
    height: 18px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 69, 0, 0.1);
    margin-bottom: -2rem;
    position: relative;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-modern {
    padding: 100px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
}

.benefit-item-modern {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.benefit-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-modern i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.benefit-item-modern h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.benefit-item-modern p {
    color: var(--gray);
    line-height: 1.6;
}

.why-choose-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, var(--light-gray), white);
    border: 2px solid #e0e0e0;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.1);
}

.visual-card:nth-child(3) {
    grid-column: 1 / -1;
}

.visual-stat i {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.visual-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.visual-label {
    color: var(--gray);
    font-weight: 500;
}

/* Decorative Elements */
.decorative-dots {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    z-index: 0;
}

.decorative-circle {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.author-position {
    font-size: 0.9rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link i {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.back-to-top i {
    width: 24px;
    height: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

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

/* Department Pages Styles */
.page-content {
    padding-top: 80px;
    min-height: 100vh;
}

.dept-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.dept-hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.dept-hero p {
    color: var(--gray);
    font-weight: 600;
}

.dept-hero-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    animation: float 4s ease-in-out infinite;
    display: block;
}

.dept-description {
    background: rgba(255, 165, 0, 0.08);
    border-left: 4px solid var(--secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background: var(--light-gray);
    border: 2px solid #e0e0e0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.15), transparent);
    transition: left 0.5s;
}

.service-item:hover::after {
    left: 100%;
}

.service-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.2);
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--gray);
    line-height: 1.6;
}

.service-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.timeline {
    color: #888;
}

.why-choose {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(255, 215, 0, 0.08));
    border: 2px solid var(--secondary);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
}

.why-choose h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--gray);
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 3rem;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: var(--primary);
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #fff;
    cursor: pointer;
    text-decoration: none;
}

.contact-button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: scale(1.05);
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.growth-card {
    background: var(--light-gray);
    border: 2px solid var(--secondary);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.growth-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
}

.growth-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.growth-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--accent);
}

.growth-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
}

.growth-card ul {
    list-style: none;
}

.growth-card li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: start;
    color: var(--gray);
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.kpi-section {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--secondary);
    border-radius: 1rem;
    padding: 3rem;
    margin-top: 3rem;
}

.kpi-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

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

.kpi-value {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.kpi-label {
    color: #888;
}

/* Design Tools Showcase */
.tools-showcase {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    animation: floatTool 3s ease-in-out infinite;
}

.tool-icon:nth-child(1) { animation-delay: 0s; }
.tool-icon:nth-child(2) { animation-delay: 0.5s; }
.tool-icon:nth-child(3) { animation-delay: 1s; }
.tool-icon:nth-child(4) { animation-delay: 1.5s; }

.tool-icon i {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.tool-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

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

/* Portfolio Preview Section */
.portfolio-preview {
    margin: 4rem 0;
}

.preview-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.preview-item:hover {
    transform: translateY(-5px);
}

.preview-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.preview-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    z-index: 1;
}

.preview-placeholder i,
.preview-placeholder span {
    position: relative;
    z-index: 2;
}

.preview-placeholder i {
    width: 50px;
    height: 50px;
}

.design-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.design-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.design-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.design-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Tech Stack Badges */
.tech-stack {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.tech-badge:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.15);
}

.tech-badge i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Website Mockups */
.website-previews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.website-mockup {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.website-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.browser-bar {
    background: #f5f5f5;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 0.4rem;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
    flex: 1;
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.85rem;
    color: #888;
}

.website-content {
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--light-gray), white);
}

.website-content i {
    width: 60px;
    height: 60px;
    color: var(--primary);
}

.website-content p {
    font-weight: 600;
    color: var(--dark);
    font-size: 1.2rem;
}

/* Social Platforms */
.social-platforms {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.platform-icon i {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.platform-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.platform-icon:nth-child(1):hover { background: #1877f2; }
.platform-icon:nth-child(2):hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-icon:nth-child(3):hover { background: #1da1f2; }
.platform-icon:nth-child(4):hover { background: #0077b5; }
.platform-icon:nth-child(5):hover { background: #ff0000; }

.platform-icon:hover i {
    color: white;
}

/* Social Stats Section */
.social-stats-section {
    margin: 4rem 0;
}

.stats-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, white, var(--light-gray));
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.15);
}

.stat-card i {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .dept-hero h1 {
        font-size: 2rem;
    }

    .hero-graphic {
        height: 250px;
    }

    .graphic-element {
        width: 60px;
        height: 60px;
    }

    .graphic-element i {
        width: 30px;
        height: 30px;
    }

    .laptop {
        width: 90px;
        height: 90px;
    }

    .laptop i {
        width: 45px;
        height: 45px;
    }

    .tools-showcase,
    .tech-stack,
    .social-platforms {
        gap: 1rem;
    }

    .tool-icon,
    .platform-icon {
        width: 50px;
        height: 50px;
    }

    .tool-icon i,
    .platform-icon i {
        width: 24px;
        height: 24px;
    }

    .preview-grid,
    .website-previews,
    .stats-visual {
        grid-template-columns: 1fr;
    }

    .floating-shape {
        display: none;
    }

    .services-showcase,
    .growth-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}