:root {
    --primary-color: #FF00CC;
    /* Neon Pink */
    --secondary-color: #333399;
    /* Deep Purple */
    --accent-color: #00FFFF;
    /* Cyan/Electric Blue */
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --gradient-main: linear-gradient(135deg, #FF00CC 0%, #333399 100%);
    --gradient-hover: linear-gradient(135deg, #333399 0%, #FF00CC 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-shadow: 0 0 10px rgba(255, 0, 204, 0.5);
    --transition: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 204, 0.3);
}

.mt-5 {
    margin-top: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    background: url('../assets/images/1-MKT-DIGITAL.jpg') no-repeat center center/cover;
    /* Placeholder logic applied */
}

/* Overlay to darken background image for text readability */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), var(--bg-dark));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-main);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--neon-shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.8);
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Info Section (Definition) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-grid.reverse {
    direction: rtl;
    /* Trick to flip columns, need to reset text alignment in children */
}

.info-grid.reverse .info-text,
.info-grid.reverse .info-image {
    direction: ltr;
}

.info-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.info-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: var(--glass-border);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 0, 204, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(70, 70, 120, 0.2));
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
    /* slight extra lift on hover */
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.price-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 10px 0;
}

.features li {
    margin-bottom: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.features li i {
    color: var(--primary-color);
    margin-right: 10px;
    min-width: 20px;
}

.note {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-button {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-top: auto;
}

.pricing-button:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--neon-shadow);
}

/* Services List (Individual) */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: var(--glass-border);
    transition: var(--transition);
    text-align: center;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Influencer Roles */
.manager-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.role-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.role-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role-card h3 {
    margin-bottom: 15px;
    color: var(--text-white);
}

.role-card p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

/* Advisory Packs (Influencer) */
.advisory-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pack-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: var(--glass-border);
}

.pack-card.featured {
    border-color: var(--primary-color);
    background: rgba(255, 0, 204, 0.05);
}

.pack-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.pack-card ul {
    margin-top: 20px;
    padding-left: 20px;
    list-style: disc;
    color: var(--text-gray);
}

.pack-card li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

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

.footer-brand h2 {
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.slogan {
    font-style: italic;
    color: var(--text-gray);
    margin-top: 10px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* Alt BG */
.alt-bg {
    background: rgba(255, 255, 255, 0.02);
}

/* Animations CSS Import or Definition - Adding simplified version here for self-containment if needed,
   but user has animations.css. I will assume animations.css has .fade-in and .slide-up.
   I will add a quick block for them just in case they need to be compatible with dark mode */

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

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

    .navbar .nav-links {
        display: none;
        /* Mobile menu logic would go here if JS enabled toggle */
    }

    .menu-toggle {
        display: block;
    }

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

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    /* Changed from none to control via JS class or inline style, but default grid/flex is better */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 0, 204, 0.3);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 0, 204, 0.5);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
    border-radius: 8px;
    margin: 20px 0;
    animation: fadeIn 0.5s ease-out;
}

.text-left {
    text-align: left;
}

/* Custom Contact Form Section */
.custom-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f1a 100%);
    position: relative;
}

.custom-subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.custom-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--gradient-main);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--neon-shadow);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 204, 0.4);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}