/* Website Design Service Page Styles */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #673de6;
    --secondary-color: #5025d1;
    --accent-color: #ff6b6b;
    --text-color: #2d3436;
    --light-bg: #f8f9ff;
    --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-2: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    --box-shadow: 0 10px 30px rgba(103, 61, 230, 0.1);
}

.hero-design {
    min-height: 85vh;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.hero-design::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: var(--gradient-1);
    transform: rotate(-12deg);
    z-index: 0;
    opacity: 0.1;
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0% { transform: rotate(-12deg) scale(1); }
    50% { transform: rotate(-12deg) scale(1.05); }
    100% { transform: rotate(-12deg) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.features-section {
    padding: 80px 0;
    background: #fff;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.features-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.features-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(103, 61, 230, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(103, 61, 230, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.pricing-section {
    padding: 80px 0;
    background: #f8f9ff;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 15px;
}

.pricing-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.pricing-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 3vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 30px);
    position: relative;
    z-index: 1;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    position: relative;
    border: 1px solid var(--primary-color);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(103, 61, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.price-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.price-description {
    color: #666;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.price-period {
    color: #666;
    margin-bottom: 30px;
    display: block;
}

.package-intro {
    text-align: center;
    padding: clamp(20px, 3vw, 30px);
    margin: 0 clamp(15px, 2vw, 20px);
    border-radius: 16px;
    background: linear-gradient(
        to bottom,
        rgba(103, 61, 230, 0.03),
        transparent
    );
}

.package-intro h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--text-color);
    margin-bottom: clamp(6px, 1vw, 10px);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.package-intro p {
    color: #666;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.5;
}

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

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

.features li i {
    color: var(--primary-color);
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(103, 61, 230, 0.2);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card:hover {
        transform: translateY(-5px);
    }

    .features li:hover {
        transform: none;
    }
}

@media (hover: none) {
    .price-card:hover {
        transform: none;
        box-shadow: none;
    }

    .features li:hover {
        transform: none;
    }

    .action-button:hover {
        transform: none;
        box-shadow: none;
    }
}

@media screen and (max-width: 768px) {
    .pricing-header h2 {
        font-size: 2.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 40px;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-tag .amount {
        font-size: 3rem;
    }

    .features li {
        padding: 10px 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    z-index: 10;
    position: relative;
}

.hero-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
    font-size: 1.1rem;
}

.hero-buttons .cta-button.primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.2);
}

.hero-buttons .cta-button.secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(103, 61, 230, 0.3);
}

.hero-buttons .cta-button.secondary:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.process-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.process-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(103, 61, 230, 0.1);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    background: #fff;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 25px;
    position: relative;
}

.step-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}



/* Enhanced CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 0;
    background: var(--gradient-1);
    color: #fff;
    position: relative;
    border-radius: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.cta-features .feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cta-features i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-features .feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .wave-top svg, .wave-bottom svg {
        height: 50px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 50px;
        order: -1;
    }

    .hero-illustration {
        width: 120%;
        margin-left: -10%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-illustration {
        width: 140%;
        margin-left: -20%;
    }
}

/* Custom Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}
