:root {
    --light-blue: rgb(198, 224, 255);
    --accent-pink: rgb(255, 104, 104);
    --primary-color: var(--light-blue); /* Alias for backward compatibility */
}

body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-image:
        linear-gradient(rgba(40, 40, 40, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 40, 40, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center center;
    min-height: 100vh;
}

.logo {
    width: 40px;
    height: 40px;
}

.navbar {
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.twitter-btn {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 20px;
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    transition: all 0.2s ease;
}

.twitter-btn:hover {
    background-color: rgba(40, 40, 40, 0.9);
    color: #fff;
    transform: translateY(-1px);
}

.follow-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.follow-text i {
    font-size: 1.1rem;
    animation: pointLeft 1.5s infinite;
}

@keyframes pointLeft {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-3px);
    }
}

.availability-badge {
    background: linear-gradient(90deg, rgba(255, 104, 104, 0.15), rgba(198, 224, 255, 0.15));
    border-radius: 30px;
    padding: 10px 25px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cta-button {
    background: #66191a;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 120, 228, 0.4);
}

.no-commitment {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.scroll-indicator {
    text-align: center;
    margin-top: 5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.footer-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(47, 47, 47, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-cta {
    background: #000;
    color: white;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}

/* Additional styles for the rest of the page */
section {
    padding: 120px 0;
    position: relative;
}

/* Alternating section backgrounds */
.section-dark {
    background-color: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-alternate {
    background-color: rgb(11 12 18);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.process-card {
    background: rgba(30, 30, 40, 0.4);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 104, 238, 0.4);
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.1);
}

.process-number {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    display: none;
}

.process-card:hover .process-number {
    display: block;
}

.process-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card {
    background: rgba(20, 20, 30, 0.9);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 104, 238, 0.4);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(198, 224, 255, 0.1), rgba(255, 104, 104, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(198, 224, 255, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-duration {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-card .cta-button {
    width: 100%;
    margin-top: auto;
}

.work-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.work-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.work-card:hover .work-overlay {
    transform: translateY(-10px);
}

.work-card:hover .work-image {
    transform: scale(1.05);
}

.work-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.work-category {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(198, 224, 255, 0.08), rgba(255, 104, 104, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
    font-family: serif;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.faq-item {
    background: rgba(30, 30, 40, 0.7);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(123, 104, 238, 0.4);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    display: none;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.contact-section {
    background: linear-gradient(145deg, rgba(90, 120, 228, 0.1), rgba(138, 99, 210, 0.1));
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 50px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

footer {
    padding: 50px 0 100px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    background: rgb(13 14 20);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 30, 40, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
        width: 90%;
    }

    .footer-nav a {
        font-size: 0.8rem;
        padding: 5px;
    }
}

.pricing-card .availability-badge {
    background: linear-gradient(90deg, rgba(90, 120, 228, 0.1), rgba(138, 99, 210, 0.1));
    border: 1px solid rgba(123, 104, 238, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: inline-block;
    margin: auto;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 12px;
    right: -35px;
    background: linear-gradient(90deg, #5a78e4, #8a63d2);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
}

.pricing-card .no-commitment {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
}

.feature-card {
    background: linear-gradient(145deg, rgba(198, 224, 255, 0.1), rgba(255, 104, 104, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(198, 224, 255, 0.1);
}

.cta-section {
    background: linear-gradient(165deg, rgba(198, 224, 255, 0.05), rgba(255, 104, 104, 0.05));
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.contact-form {
    background: linear-gradient(145deg, rgba(198, 224, 255, 0.05), rgba(255, 104, 104, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}