/* Pages Styles */

.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
    width: 100%;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 80px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #66ffcc 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header p {
    font-size: 16px;
    color: #a0a8c0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(102, 255, 204, 0.05);
    border: 1px solid rgba(102, 255, 204, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(102, 255, 204, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.pricing-card:hover {
    background: rgba(102, 255, 204, 0.1);
    border-color: rgba(102, 255, 204, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 255, 204, 0.15);
}

.pricing-card.featured {
    background: rgba(102, 255, 204, 0.1);
    border-color: rgba(102, 255, 204, 0.4);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #66ffcc 0%, #00d4ff 100%);
    color: #0a0e27;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #66ffcc;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #66ffcc 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.pricing-card .price-period {
    font-size: 14px;
    color: #a0a8c0;
    margin-bottom: 25px;
}

.pricing-card p {
    font-size: 14px;
    color: #a0a8c0;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pricing-card .features {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pricing-card .features li {
    list-style: none;
    padding: 8px 0;
    color: #a0a8c0;
    font-size: 13px;
    border-bottom: 1px solid rgba(102, 255, 204, 0.1);
}

.pricing-card .features li:before {
    content: '✓ ';
    color: #66ffcc;
    font-weight: bold;
    margin-right: 8px;
}

.pricing-card .features li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-card .btn {
    margin-top: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.about-header, .contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: slideIn 0.8s ease-out 0.3s backwards;
}

.about-header h1, .contact-header h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.about-header h1 span, .contact-header h1 span {
    background: linear-gradient(135deg, #66ffcc 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: #a0a8c0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    animation: slideIn 0.8s ease-out 0.5s backwards;
}

.service-card {
    background: rgba(102, 255, 204, 0.05);
    border: 1px solid rgba(102, 255, 204, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(102, 255, 204, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.service-card:hover {
    background: rgba(102, 255, 204, 0.1);
    border-color: rgba(102, 255, 204, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 255, 204, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #66ffcc;
}

.service-card p {
    font-size: 15px;
    color: #a0a8c0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: rgba(102, 255, 204, 0.05);
    border: 2px solid rgba(102, 255, 204, 0.2);
    border-radius: 15px;
    padding: 60px;
    margin-bottom: 40px;
    animation: slideIn 0.8s ease-out 0.7s backwards;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #66ffcc 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 18px;
    color: #a0a8c0;
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    animation: slideIn 0.8s ease-out 0.4s backwards;
}

.contact-info {
    background: rgba(102, 255, 204, 0.05);
    border: 1px solid rgba(102, 255, 204, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #66ffcc;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #fff;
}

.info-details p,
.info-details a {
    color: #a0a8c0;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
}

.info-details a:hover {
    color: #66ffcc;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(102, 255, 204, 0.05);
    border: 1px solid rgba(102, 255, 204, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #66ffcc;
    margin-bottom: 8px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    color: #a0a8c0;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid rgba(102, 255, 204, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #66ffcc;
    background: rgba(102, 255, 204, 0.05);
    box-shadow: 0 0 20px rgba(102, 255, 204, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0a0e27;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #66ffcc;
}

.btn-submit {
    margin-top: 20px;
    width: 100%;
}

/* Form Message */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: rgba(102, 255, 204, 0.2);
    color: #66ffcc;
    border: 1px solid #66ffcc;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-section {
        padding: 40px 30px;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-header h1, .contact-header h1 {
        font-size: 42px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .pricing-header h2 {
        font-size: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card .price {
        font-size: 32px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-icon {
        font-size: 36px;
    }

    header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        gap: 20px;
    }

    nav a {
        margin: 0;
    }
}
