@charset "UTF-8";

/* ==========================================================================
   Project: World Blue AI Studio - Music Video Production Service
   Theme: Cyberpunk / Synthwave / Premium Dark
   Target: Artists, Bands, V-Tubers, Music Producers
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables
   -------------------------------------------------------------------------- */
:root {
    --wb-mv-bg-dark: #0f172a;
    /* Dark Slate */
    --wb-mv-bg-darker: #020617;
    /* Almost Black */
    --wb-mv-primary: #0ea5e9;
    /* Cyan/Electric Blue */
    --wb-mv-secondary: #d946ef;
    /* Magenta/Neon Pink */
    --wb-mv-accent: #f59e0b;
    /* Gold/Orange */
    --wb-mv-text-main: #f8fafc;
    /* Off White */
    --wb-mv-text-muted: #94a3b8;
    /* Muted Blue-Gray */

    --wb-mv-font-heading: "Montserrat", "Noto Sans JP", sans-serif;
    --wb-mv-font-body: "Noto Sans JP", sans-serif;

    --wb-mv-gradient-main: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
    --wb-mv-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

    --wb-mv-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
    --wb-mv-glow: 0 0 20px rgba(217, 70, 239, 0.4);
}

/* --------------------------------------------------------------------------
   Base & Scoping
   -------------------------------------------------------------------------- */
.wb-mv-wrapper {
    background-color: var(--wb-mv-bg-darker);
    color: var(--wb-mv-text-main);
    font-family: var(--wb-mv-font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

.wb-mv-wrapper * {
    box-sizing: border-box;
}

.wb-mv-container {
    max-width: 1400px;
    /* Increased from 1200px */
    width: 95%;
    /* Ensure it takes up space on smaller screens but leaves margins */
    margin: 0 auto;
    padding: 0 2rem;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.wb-mv-section-title {
    font-family: var(--wb-mv-font-heading);
    font-size: 3rem;
    background: var(--wb-mv-gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wb-mv-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--wb-mv-text-muted);
    margin-bottom: 4rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.wb-mv-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wb-mv-btn-primary {
    background: var(--wb-mv-gradient-main);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(217, 70, 239, 0.4);
}

.wb-mv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(14, 165, 233, 0.5);
    filter: brightness(1.1);
}

.wb-mv-btn-outline {
    background: transparent;
    color: var(--wb-mv-text-main);
    border: 2px solid var(--wb-mv-secondary);
}

.wb-mv-btn-outline:hover {
    background: var(--wb-mv-secondary);
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.wb-mv-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wb-mv-bg-darker);
    overflow: hidden;
}

.wb-mv-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: 0;
}

.wb-mv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.9) 100%);
    z-index: 1;
}

.wb-mv-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

/* Glitch Effect Title */
.wb-mv-hero-title {
    font-family: var(--wb-mv-font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px var(--wb-mv-secondary), -2px -2px var(--wb-mv-primary);
}

.wb-mv-hero-subtitle {
    font-size: 1.4rem;
    color: var(--wb-mv-text-main);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Service Cards (Features)
   -------------------------------------------------------------------------- */
.wb-mv-features {
    padding: 8rem 0;
    background: var(--wb-mv-bg-dark);
}

.wb-mv-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wb-mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.wb-mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--wb-mv-gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wb-mv-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.wb-mv-card:hover::before {
    transform: scaleX(1);
}

.wb-mv-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.6));
}

.wb-mv-card h3 {
    font-size: 1.5rem;
    color: var(--wb-mv-text-main);
    margin-bottom: 1rem;
    font-weight: 700;
}

.wb-mv-card p {
    color: var(--wb-mv-text-muted);
}

/* --------------------------------------------------------------------------
   Samples Grid
   -------------------------------------------------------------------------- */
.wb-mv-samples {
    padding: 8rem 0;
    background: var(--wb-mv-bg-darker);
}

.wb-mv-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.wb-mv-video-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.wb-mv-video-item:hover {
    border-color: var(--wb-mv-secondary);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.2);
}

.wb-mv-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.wb-mv-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wb-mv-video-caption {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
}

.wb-mv-video-caption h4 {
    margin: 0;
    color: var(--wb-mv-text-main);
    font-size: 1.2rem;
}

.wb-mv-video-caption p {
    margin: 0.5rem 0 0;
    color: var(--wb-mv-text-muted);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.wb-mv-pricing {
    padding: 8rem 0;
    background: var(--wb-mv-bg-dark);
}

.wb-mv-price-card {
    background: var(--wb-mv-bg-darker);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
}

.wb-mv-price-card.featured {
    border: 2px solid var(--wb-mv-secondary);
    transform: scale(1.05);
    box-shadow: var(--wb-mv-glow);
}

.wb-mv-price-badge {
    background: var(--wb-mv-secondary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

.wb-mv-plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--wb-mv-text-main);
    margin-bottom: 0.5rem;
}

.wb-mv-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--wb-mv-primary);
    margin: 1.5rem 0;
    font-family: var(--wb-mv-font-heading);
}

.wb-mv-price span {
    font-size: 1.2rem;
    color: var(--wb-mv-text-muted);
}

.wb-mv-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.wb-mv-features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--wb-mv-text-muted);
}

.wb-mv-features-list li::before {
    content: '⚡';
    margin-right: 0.5rem;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.wb-mv-cta-section {
    padding: 8rem 0;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.wb-mv-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--wb-mv-secondary);
    filter: blur(200px);
    opacity: 0.15;
    border-radius: 50%;
}

.wb-mv-cta-content {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.wb-mv-contact {
    padding: 6rem 2rem;
    background: #000;
}

.wb-mv-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--wb-mv-bg-dark);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Fix Contact Form 7 Styles for Dark Theme */
.wb-mv-contact .wpcf7-form label {
    color: var(--wb-mv-text-main);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.wb-mv-contact .wpcf7-text,
.wb-mv-contact .wpcf7-textarea,
.wb-mv-contact .wpcf7-select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wb-mv-contact .wpcf7-text:focus,
.wb-mv-contact .wpcf7-textarea:focus {
    border-color: var(--wb-mv-primary) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    outline: none;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
}

.wb-mv-contact .wpcf7-submit {
    background: var(--wb-mv-gradient-main);
    color: #fff;
    border: none;
    padding: 1.2rem 4rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    width: auto;
    min-width: 200px;
}

.wb-mv-contact .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
}

/* Fix checkboxes/radio text color */
.wb-mv-contact .wpcf7-list-item-label {
    color: var(--wb-mv-text-main);
}

/* --------------------------------------------------------------------------
   Character Modeling Section
   -------------------------------------------------------------------------- */
.wb-mv-character-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--wb-mv-bg-darker) 0%, #1e1b4b 100%);
    /* Deep Indigo gradient */
    position: relative;
    overflow: hidden;
}

.wb-mv-character-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wb-mv-character-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wb-mv-char-highlight {
    color: var(--wb-mv-secondary);
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.wb-mv-character-content p {
    font-size: 1.1rem;
    color: var(--wb-mv-text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.wb-mv-char-video-showcase {
    position: relative;
}

.wb-mv-char-video-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--wb-mv-primary);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.wb-mv-char-video-card:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 2;
}

.wb-mv-char-video-card.video-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    transform: rotate(5deg);
    border-color: var(--wb-mv-secondary);
    z-index: 2;
}

.wb-mv-char-video-card.video-2:hover {
    transform: rotate(0deg) scale(1.05);
}

@media (max-width: 900px) {
    .wb-mv-character-grid {
        grid-template-columns: 1fr;
    }

    .wb-mv-char-video-card.video-2 {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: -2rem;
        transform: rotate(2deg);
    }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .wb-mv-hero-title {
        font-size: 3rem;
    }

    .wb-mv-video-grid,
    .wb-mv-feature-grid {
        grid-template-columns: 1fr;
    }

    .wb-mv-price-card.featured {
        transform: scale(1);
    }
}

/* --------------------------------------------------------------------------
   Visionary Section (Appeal)
   -------------------------------------------------------------------------- */
.wb-mv-vision-section {
    padding: 10rem 0;
    background: radial-gradient(circle at 30% 30%, #172554 0%, var(--wb-mv-bg-darker) 70%);
    position: relative;
    overflow: hidden;
}

.wb-mv-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.wb-mv-vision-item {
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.wb-mv-vision-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--wb-mv-primary);
}

.wb-mv-vision-num {
    font-family: var(--wb-mv-font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    right: 1rem;
    pointer-events: none;
}

.wb-mv-vision-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    /* Fallback for readability */
    font-weight: 700;
}

.wb-mv-vision-item p {
    color: rgba(255, 255, 255, 0.95);
    /* Increased opacity for readability */
    line-height: 2;
    font-size: 1.15rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.wb-mv-vision-impact {
    margin-top: 6rem;
    text-align: center;
    position: relative;
}

.wb-mv-vision-impact::before {
    content: '"';
    font-size: 10rem;
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--wb-mv-secondary);
    opacity: 0.1;
    font-family: serif;
}

.wb-mv-vision-message {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .wb-mv-vision-message {
        font-size: 1.8rem;
    }
}