@charset "utf-8";
/* CSS Document */

/* ===========================================
   W Marketing Group - Main Stylesheet
   Version: 1.0
   =========================================== */

/* Core Variables */
:root {
    /* Colors */
    --primary-color: #00ffff;
    --primary-glow: rgba(0, 255, 255, 0.5);
    --accent-color: #ff00ff;
    --accent-glow: rgba(255, 0, 255, 0.3);
    --tertiary-color: #00ff8c;
    --tertiary-glow: rgba(0, 255, 140, 0.3);
    
    /* Backgrounds */
    --dark-bg: #000000;
    --darker-bg: #111111;
    --section-bg-1: rgba(0, 0, 0, 0.45);
    --section-bg-2: rgba(2, 12, 27, 0.47);
    --card-bg: rgba(16, 16, 16, 0.95);
    
    /* Effects */
    --text-glow: 0 0 10px rgba(0, 255, 255, 0.5);
    --border-glow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Base Styles */
body {
    background: var(--dark-bg);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

.submission-messages {
    margin-top: 1rem;
}

.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.alert-success {
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid #00ff80;
    color: #00ff80;
}

.alert-danger {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

.main-content {
    position: relative;
    z-index: 1;
}

/* Ad Channel Quiz Styles */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--border-glow);
    transition: all 0.3s ease;
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.progress-text {
    text-align: center;
    margin-top: 1rem;
    color: var(--primary-color);
}

.question-container {
    min-height: 300px;
}

.quiz-question {
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-options {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.quiz-option {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quiz-option:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.quiz-option.selected {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Results Modal Styles */
.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    box-shadow: var(--border-glow);
}

.modal-header {
    border-bottom: 1px solid var(--primary-color);
}

.btn-close-white {
    filter: invert(1) brightness(200%);
}

.recommendation-card {
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.channel-score {
    position: relative;
    width: 40px;
    height: 40px;
}

.score-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
}

.results-email-capture {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-card {
        padding: 1.5rem;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.glow-text {
    color: var(--primary-color);
    text-shadow: var(--text-glow);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    border-bottom: 1px solid var(--primary-color);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.15);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #ffffff !important;
    text-shadow: var(--text-glow);
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Section Styles */
.section-divide {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.section-dark {
    background: var(--section-bg-1);
}

.section-darker {
    background: var(--section-bg-2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.2;
    pointer-events: none;
}

/* Buttons */
.cta-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--border-glow);
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--dark-bg) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.5);
}

/* Cards */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--border-glow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--border-glow);
}

/* Philosophy Cards */
.philosophy-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--border-glow);
}

.comparison-item {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* Contact Section */
.contact-methods-container {
    height: 100%;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--border-glow);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info {
    flex: 1;
}

.contact-label {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    text-shadow: var(--text-glow);
}

/* Form Styles */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25);
    color: #fff;
}

/* Map Container */
.map-container {
    position: relative;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--border-glow);
}

.map-container iframe {
    display: block;
    filter: invert(90%) hue-rotate(180deg) saturate(80%);
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--primary-color);
    padding: 4rem 0 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }

    .section-divide {
        padding: 4rem 0;
    }

    .hero-section {
        padding: 80px 0;
    }

    .contact-card {
        margin-bottom: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 100%;
    }
}

@media (max-width: 576px) {
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* ===========================================
   Digital Advertising Page Specific Styles
   Add to your main.css file
   =========================================== */

/* Strategy Cards */
.strategy-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--border-glow);
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.strategy-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--border-glow);
    transition: all 0.3s ease;
}

.strategy-card:hover .strategy-icon {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Platform Cards */
.platform-grid {
    position: relative;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary-color),
        var(--accent-color),
        transparent
    );
    opacity: 0;
    transition: all 0.3s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-card .feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.platform-card .feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    opacity: 0.7;
}

/* Analytics Cards */
.analytics-card {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.analytics-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analytics-card .feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.analytics-card .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Steps */
.process-step {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    padding-top: 3rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: var(--border-glow);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

/* Feature List Global Styles */
.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .strategy-card,
    .platform-card,
    .analytics-card,
    .process-step {
        padding: 1.5rem;
    }

    .strategy-icon {
        width: 60px;
        height: 60px;
    }

    .process-step {
        margin-top: 2.5rem;
    }
}

/* Animation Keyframes */
@keyframes cardGlow {
    0% {
        box-shadow: 0 0 5px var(--primary-glow);
    }
    50% {
        box-shadow: 0 0 20px var(--primary-glow);
    }
    100% {
        box-shadow: 0 0 5px var(--primary-glow);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Hover Effects */
.strategy-icon:hover {
    animation: iconPulse 2s infinite;
}

.platform-card:hover,
.analytics-card:hover {
    animation: cardGlow 2s infinite;
}