:root {
    --bubblegum-pink: #FF4EA2; /* Brighter pink */
    --golden-yellow: #FFD057; /* Brighter yellow */
    --azure-blue: #00B9FF; /* Brighter blue */
    --deep-charcoal: #1D1D1D;
    --light-gray: #F3F3F3;
    --medium-gray: #ADADAD;
    --white: #FFFFFF;
    --dark-gray: #2A2A2A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--deep-charcoal);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.logo-pop {
    color: var(--bubblegum-pink);
}

.logo-plus {
    color: var(--golden-yellow);
    margin: 0 5px;
}

.logo-pixel {
    color: var(--azure-blue);
    position: relative;
}

.logo-pixel::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--golden-yellow);
    position: relative;
    bottom: 6px;
    margin-left: 2px;
    animation: blink 2s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--deep-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--azure-blue);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--golden-yellow);
}

nav ul li a:hover::after {
    width: 100%;
    background-color: var(--golden-yellow);
}

/* Active page styling */
nav ul li a.active {
    color: var(--azure-blue);
    font-weight: 600;
}

nav ul li a.active::after {
    width: 100%;
    background-color: var(--azure-blue);
    height: 3px;
}

/* Highlighted navigation item for VIP Day Pricing */
nav ul li a.nav-highlight {
    color: var(--bubblegum-pink);
    font-weight: 600;
}

nav ul li a.nav-highlight:hover {
    color: var(--azure-blue);
}

nav ul li a.nav-highlight::after {
    background-color: var(--bubblegum-pink);
}

nav ul li a.nav-highlight:hover::after {
    background-color: var(--azure-blue);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero section */
.hero {
    background-color: var(--white);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.hero-subtitle {
    color: var(--azure-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--deep-charcoal);
}

.highlight-pink {
    color: var(--bubblegum-pink);
}

.highlight-yellow {
    color: var(--golden-yellow);
}

.highlight-blue {
    color: var(--azure-blue);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--bubblegum-pink);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(252, 109, 171, 0.3);
}

.btn-primary:hover {
    background-color: #fb4c94;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 109, 171, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--azure-blue);
    border: 2px solid var(--azure-blue);
    /* Removed margin-left since we're using flexbox with gap for the buttons */
}

.btn-secondary:hover {
    background-color: var(--azure-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 166, 251, 0.3);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blob {
    position: absolute;
    z-index: 0;
    opacity: 0.5;
}

.blob-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--bubblegum-pink);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-move 15s infinite alternate;
}

.blob-2 {
    bottom: -80px;
    left: -60px;
    width: 250px;
    height: 250px;
    background-color: var(--golden-yellow);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-move 18s infinite alternate;
}

.blob-3 {
    top: 40%;
    right: 20%;
    width: 180px;
    height: 180px;
    background-color: var(--azure-blue);
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    animation: blob-move 20s infinite alternate;
}

@keyframes blob-move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(180deg);
    }
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--bubblegum-pink);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: var(--azure-blue);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.3s ease;
}

.service-card:nth-child(1)::before {
    background-color: var(--bubblegum-pink);
}

.service-card:nth-child(2)::before {
    background-color: var(--golden-yellow);
}

.service-card:nth-child(3)::before {
    background-color: var(--azure-blue);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
}

.service-card:nth-child(1) .service-icon {
    color: var(--bubblegum-pink);
}

.service-card:nth-child(2) .service-icon {
    color: var(--golden-yellow);
}

.service-card:nth-child(3) .service-icon {
    color: var(--azure-blue);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-charcoal);
}

.service-description {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-link {
    color: var(--deep-charcoal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card:nth-child(1) .service-link {
    color: var(--bubblegum-pink);
}

.service-card:nth-child(2) .service-link {
    color: var(--golden-yellow);
}

.service-card:nth-child(3) .service-link {
    color: var(--azure-blue);
}

.service-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* About Preview section */
.about-preview {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    border-radius: 20px;
    background-color: var(--golden-yellow);
    z-index: 0;
}

.about-content {
    flex: 1;
}

.about-subtitle {
    color: var(--bubblegum-pink);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--azure-blue);
}

.about-description {
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-icon {
    color: var(--golden-yellow);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1rem;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 5px;
}

.feature-description {
    color: var(--dark-gray);
}

/* Featured Work section */
.featured-work {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.portfolio-cta {
    text-align: center;
    margin-top: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1/1;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(29, 29, 29, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-btn {
    padding: 8px 20px;
    background-color: var(--bubblegum-pink);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

.portfolio-item:hover .portfolio-category,
.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-btn {
    transform: translateY(0);
    opacity: 1;
}


/* CTA section */
.cta {
    padding: 100px 0;
    background-color: var(--deep-charcoal);
    background-image: linear-gradient(to bottom, #232323, #1d1d1d);
    position: relative;
    overflow: hidden;
}

.blob-cta-1 {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background-color: var(--bubblegum-pink);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.9;
    filter: blur(40px);
    animation: float-blob 20s ease-in-out infinite alternate;
}

.blob-cta-2 {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background-color: var(--azure-blue);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.9;
    filter: blur(40px);
    animation: float-blob 25s ease-in-out infinite alternate-reverse;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 230px;
    background-color: var(--golden-yellow);
    border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
    opacity: 0.85;
    filter: blur(35px);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(15deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced CTA button for dark sections */
.cta .btn-primary {
    background-color: var(--bubblegum-pink);
    box-shadow: 0 5px 20px rgba(255, 78, 162, 0.4); /* Enhanced glow effect */
    padding: 16px 35px; /* Slightly larger */
    transition: all 0.3s ease;
}

.cta .btn-primary:hover {
    background-color: var(--golden-yellow);
    box-shadow: 0 8px 25px rgba(255, 208, 87, 0.6); /* Enhanced hover glow effect */
    transform: translateY(-5px) scale(1.05);
}

/* Footer section */
footer {
    background-color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
}

/* Ensure the footer logo also has the pixel dot */
.footer-logo .logo-pixel::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--golden-yellow);
    position: relative;
    bottom: 6px;
    margin-left: 2px;
    animation: blink 2s infinite alternate;
}

.footer-description {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link:nth-child(1):hover {
    background-color: var(--bubblegum-pink);
    color: var(--white);
}

.social-link:nth-child(2):hover {
    background-color: var(--golden-yellow);
    color: var(--white);
}

.social-link:nth-child(3):hover {
    background-color: var(--azure-blue);
    color: var(--white);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--golden-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bubblegum-pink);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.footer-contact li a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--azure-blue);
}

.contact-icon {
    margin-right: 10px;
    color: var(--golden-yellow);
}

.linkedin-icon {
    display: flex;
    align-items: center;
}

.linkedin-icon svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.copyright {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--azure-blue);
    text-decoration: none;
}

.trading-as {
    font-size: 0.85rem;
    color: var(--medium);
    display: inline-block;
    margin-top: 5px;
}

.footer-policy-links {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.footer-policy-links a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 2px 5px;
}

.footer-policy-links a:hover {
    color: var(--bubblegum-pink);
}

.footer-policy-links .separator {
    color: var(--medium-gray);
}

/* Responsive design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-description {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    .about-image img {
        margin: 0 auto;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 40px 20px;
        z-index: 99;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    nav ul li a {
        display: block;
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        max-width: 100%;
    }
}