:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #7c3aed;
    --accent-light: #a78bfa;
    --accent-dark: #5b21b6;
    --gradient: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(124, 58, 237, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Abstract Background */
.abstract-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
    animation: bgMove 20s ease-in-out infinite alternate;
}

@keyframes bgMove {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.logo img {
    height: 2.5rem;
    filter: hue-rotate(240deg) saturate(2);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-light);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

/* Services Section */
.services {
    padding: 6rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Booking Section */
.booking {
    text-align: center;
    padding: 6rem 0;
}

.booking h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.calendly-container {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-card p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-card a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid var(--card-border);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        height: 2rem;
    }

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

    .subtitle {
        font-size: 1.1rem;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .results-hero {
        padding: 2rem 0;
    }

    .results-image-card img {
        max-width: 280px;
    }

    .results-headline {
        font-size: 2rem;
    }

    .results-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

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

    .subtitle {
        font-size: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .results-headline {
        font-size: 1.8rem;
    }
}

/* Results Page Specific Styles */
.results-hero {
    text-align: center;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.results-image-card {
    margin-bottom: 3rem;
}

.results-image-card img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.results-text {
    max-width: 420px;
}

.results-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.results-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.results-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.results-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Results CTA Section */
.results-cta-section {
    width: 100vw;
    margin: 0 -50vw;
    left: 50%;
    right: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 2.5rem 0;
    background: none;
}

.results-cta-button {
    display: block;
    width: 100%;
    max-width: 600px;
    padding: 1.25rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(124,58,237,0.18);
    transition: background 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
}

.results-cta-button:hover {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    box-shadow: 0 12px 40px rgba(124,58,237,0.28);
    transform: translateY(-2px) scale(1.03);
}

.results-cta-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    border-radius: 2rem;
    background: rgba(36, 20, 60, 0.45);
    box-shadow: 0 8px 32px rgba(124,58,237,0.18), 0 1.5px 8px rgba(0,0,0,0.08);
    backdrop-filter: blur(16px) saturate(1.5);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
    min-height: 180px;
}

.results-cta-card:hover {
    box-shadow: 0 16px 48px rgba(124,58,237,0.28), 0 3px 16px rgba(0,0,0,0.12);
    transform: translateY(-3px) scale(1.025);
}

.results-cta-bg {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    z-index: 1;
    pointer-events: none;
    filter: blur(2px) brightness(1.1) saturate(1.2);
}

.results-cta-svg {
    width: 100%;
    height: 100%;
    min-width: 400px;
    min-height: 120px;
    max-width: 700px;
    opacity: 0.7;
}

.results-cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    margin-left: 0.5rem;
}

.results-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    color: #fff;
}

.results-cta-content p {
    font-size: 1.1rem;
    color: #e0e0ff;
    margin-bottom: 0.5rem;
    max-width: 400px;
}

.results-cta-arrow {
    display: inline-block;
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: 900;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.2s;
}

.results-cta-card:hover .results-cta-arrow {
    transform: translateX(8px) scale(1.1);
}

@media (max-width: 800px) {
    .results-cta-card {
        flex-direction: column;
        padding: 1.5rem 1rem;
        min-height: 160px;
    }
    .results-cta-content {
        margin-left: 0;
        text-align: center;
    }
    .results-cta-svg {
        min-width: 250px;
        min-height: 80px;
    }
} 