/* Contact Form Notification Styles */
.notification {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification .notification-icon {
    margin-right: 15px;
}

.notification .notification-icon svg {
    width: 24px;
    height: 24px;
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.success .notification-icon svg {
    color: #155724;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification.error .notification-icon svg {
    color: #721c24;
}

/* Section Styles for PromptByte */

/* Common Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; /* ExtraBold */
    background: linear-gradient(135deg, #a855f7, #ec4899, #06b6d4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: gradientShift 3s ease infinite;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #d1d5db;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 300; /* Light */
}

/* Why PromptByte Section */
.why-section {
    overflow: hidden;
}

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

.why-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.why-card.problem {
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.1), rgba(59, 130, 246, 0.1));
}

.why-card.solution {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
}

.why-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.2);
}

.why-card.problem .why-card-icon {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.why-card.solution .why-card-icon {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.why-card-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.why-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.why-card-description {
    color: #d1d5db;
    line-height: 1.6;
    font-weight: 300;
}

/* How It Works Section */
.how-section {
    position: relative;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2.5rem;
    width: 2px;
    background: linear-gradient(to bottom, rgba(168, 85, 247, 0.5), rgba(236, 72, 153, 0.5));
    transform: translateX(-50%);
}

.step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.step:nth-child(1) {
    animation-delay: 0.2s;
}

.step:nth-child(2) {
    animation-delay: 0.4s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
    margin-bottom: 0;
}

.step-number {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-description {
    color: #d1d5db;
    line-height: 1.6;
    font-weight: 300;
}

/* Features Section */
.features-section {
    position: relative;
    overflow: hidden;
}

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

.feature-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

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

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    color: #d1d5db;
    line-height: 1.6;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
}

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

.testimonial-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.05), rgba(236, 72, 153, 0.05));
}

.testimonial-content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-text {
    color: #d1d5db;
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Use Cases Section */
.use-cases-section {
    position: relative;
    overflow: hidden;
}

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

.use-case-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
}

.use-case-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

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

.use-case-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.use-case-description {
    color: #d1d5db;
    line-height: 1.6;
    font-weight: 300;
}

/* FAQ Section */
.faq-section {
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
    background-color: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(168, 85, 247, 0.2);
    overflow: hidden;
    padding: 1.5rem;
}

.faq-item {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(55, 65, 81, 0.7);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(168, 85, 247, 0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(31, 41, 55, 0.9);
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.faq-question:hover {
    background-color: rgba(55, 65, 81, 0.8);
}

.faq-item.active .faq-question {
    background-color: rgba(55, 65, 81, 0.9);
    border-bottom-color: rgba(168, 85, 247, 0.3);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    color: #a855f7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Creator Section */
.creator-section {
    position: relative;
}

.creator-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.creator-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.3);
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder svg {
    width: 50%;
    height: 50%;
    color: rgba(168, 85, 247, 0.5);
}

.creator-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.creator-info p {
    color: #d1d5db;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.creator-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 9999px;
    color: #a855f7;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.creator-link:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.25);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}


.plan-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.2);
}

.plan-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.period {
    color: #9ca3af;
    font-weight: 300;
}

/* Plan Button Styles */
.plan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.8);
    border-radius: 9999px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.plan-button:hover {
    background: rgba(55, 65, 81, 0.8);
    transform: translateY(-2px);
}

.pro-button {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border: none;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.25);
}

.ultimate-button {
    background: linear-gradient(135deg, #f75555, #ff0606);
    border: none;
    box-shadow: 0 10px 25px rgba(247, 85, 93, 0.25);
}

.ultimate-button:hover {
    background: linear-gradient(135deg, #ff8181, #ff0000);
    box-shadow: 0 10px 25px rgba(255, 140, 146, 0.25);
}



.pro-button:hover {
    background: linear-gradient(135deg, #9333ea, #db2777);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.4);
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
}

/* Plan Icons */
.plan-icon-free {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.plan-icon-pro {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.plan-icon-ultimate {
    background: linear-gradient(135deg, #f75555, #ff0606);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .creator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .creator-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .steps-container::before {
        left: 2rem;
    }
    
    .step-number {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
        margin-right: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 3rem;
    }
    
    .pricing-card {
        height: auto;
    }
    
    .pricing-card.popular {
        transform: scale(1.05);
    }
    
    .popular-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .testimonials-slider,
    .features-grid,
    .use-cases-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        padding: 0 1rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }

    .creator-image {
        max-width: 320px;
    }
}

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

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