/* Reset and Base Styles */
.vip-landing-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.vip-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    scroll-behavior: smooth;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hide WordPress header when shortcode is used - aggressive hiding */
.site-header,
header:not(.vip-landing-page header),
.wp-block-navigation,
.site-navigation,
nav:not(.vip-landing-page nav),
.main-header,
.site-header-wrapper,
.site-header-container,
.header-wrapper,
.header-container,
#masthead,
#header,
.site-branding,
body.vip-landing-page-active .site-header,
body.vip-landing-page-active header:not(.vip-landing-page header),
body.vip-landing-page-active .wp-block-navigation,
body.vip-landing-page-active .site-navigation,
body.vip-landing-page-active nav:not(.vip-landing-page nav),
body.vip-landing-page-active .main-header,
body.vip-landing-page-active .site-header-wrapper {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Remove top spacing */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.admin-bar body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure VIP landing page starts at top */
.vip-landing-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
}

.vip-landing-page .hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Hero Section - Above the Fold */
.vip-landing-page .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
    animation: vipFadeIn 0.8s ease-in;
}

@keyframes vipFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.vip-landing-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
    transition: transform 0.3s ease;
}

.vip-landing-page .hero-section:hover .hero-background {
    transform: scale(1.05);
}

.vip-landing-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    z-index: 2;
}

.vip-landing-page .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vip-landing-page .hero-text {
    color: #fff;
    animation: vipSlideInLeft 0.8s ease-out;
}

@keyframes vipSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vip-landing-page .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.vip-landing-page .hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.vip-landing-page .hero-subheadline {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

/* Benefits List */
.vip-landing-page .benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.vip-landing-page .benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    animation: vipFadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.vip-landing-page .benefits-list li:nth-child(1) { animation-delay: 0.1s; }
.vip-landing-page .benefits-list li:nth-child(2) { animation-delay: 0.2s; }
.vip-landing-page .benefits-list li:nth-child(3) { animation-delay: 0.3s; }
.vip-landing-page .benefits-list li:nth-child(4) { animation-delay: 0.4s; }
.vip-landing-page .benefits-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes vipFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vip-landing-page .benefits-list li:before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    margin-right: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Form Container */
.vip-landing-page .form-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: vipSlideInRight 0.8s ease-out;
    position: sticky;
    top: 20px;
}

@media (max-width: 768px) {
    .vip-landing-page .form-container {
        position: relative;
        top: 0;
    }
}

@keyframes vipSlideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vip-landing-page .form-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.vip-landing-page .form-subheading {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    font-weight: 500;
}

.vip-landing-page .form-security-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vip-landing-page .form-security-note::before {
    content: '🔒';
    font-size: 14px;
}

.vip-landing-page .form-error-message {
    animation: vipSlideDown 0.3s ease-out;
}

@keyframes vipSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Thank You Popup */
.thank-you-popup {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: vipFadeIn 0.3s ease-out;
}

.thank-you-popup.active {
    display: flex !important;
}

.thank-you-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: vipScaleIn 0.3s ease-out;
}

@keyframes vipScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: vipBounceIn 0.6s ease-out;
}

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

.thank-you-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.thank-you-close {
    background: #1a1a2e;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thank-you-close:hover {
    background: #2a2a4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.3);
}

.vip-landing-page .vip-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.vip-landing-page .form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.vip-landing-page .form-group input,
.vip-landing-page .form-group select,
.vip-landing-page .form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.vip-landing-page .form-group input:focus,
.vip-landing-page .form-group select:focus,
.vip-landing-page .form-group textarea:focus {
    outline: none;
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
    transform: translateY(-1px);
}

.vip-landing-page .form-group input:valid:not(:placeholder-shown),
.vip-landing-page .form-group select:valid {
    border-color: #4CAF50;
}

.vip-landing-page .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.vip-landing-page .required {
    color: #e74c3c;
}

/* Optional Fields Accordion */
.vip-landing-page .optional-fields-accordion {
    margin: 20px 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vip-landing-page .optional-fields-accordion:hover {
    border-color: #1a1a2e;
}

.vip-landing-page .accordion-toggle {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.3s ease;
    font-family: inherit;
}

.vip-landing-page .accordion-toggle-text {
    color: #1a1a2e;
    font-weight: 600;
}

.vip-landing-page .accordion-toggle:hover {
    background: #e9ecef;
}

.vip-landing-page .accordion-toggle:hover .accordion-toggle-text {
    color: #1a1a2e;
}

.vip-landing-page .accordion-toggle:focus {
    outline: none;
    background: #e9ecef;
}

.vip-landing-page .accordion-toggle:focus .accordion-toggle-text {
    color: #1a1a2e;
}

.vip-landing-page .accordion-toggle:focus-visible {
    outline: 2px solid #1a1a2e;
    outline-offset: -2px;
}

.vip-landing-page .accordion-toggle-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #1a1a2e;
    line-height: 1;
}

.vip-landing-page .accordion-toggle:hover .accordion-toggle-icon,
.vip-landing-page .accordion-toggle:focus .accordion-toggle-icon {
    color: #1a1a2e;
}

.vip-landing-page .accordion-toggle[aria-expanded="true"] .accordion-toggle-icon {
    transform: rotate(45deg);
}

.vip-landing-page .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 20px;
}

.vip-landing-page .accordion-content.active {
    max-height: 1000px;
    padding: 20px;
}

.vip-landing-page .accordion-content .form-group {
    margin-bottom: 20px;
}

.vip-landing-page .accordion-content .form-group:last-child {
    margin-bottom: 0;
}

/* CTA Button */
.vip-landing-page .cta-button {
    background: #1a1a2e;
    color: #fff;
    padding: 18px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.vip-landing-page .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.vip-landing-page .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.vip-landing-page .cta-button:hover {
    background: #2a2a4e;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(26, 26, 46, 0.4);
}

.vip-landing-page .cta-button:active {
    transform: translateY(-1px);
}

.vip-landing-page .cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Social Proof Section */
.vip-landing-page .social-proof {
    background: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
}

.vip-landing-page .proof-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.vip-landing-page .proof-quote {
    font-size: 20px;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.vip-landing-page .proof-author {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.vip-landing-page .proof-tagline {
    margin-top: 24px;
    font-size: 16px;
    color: #666;
}

/* Urgency Section */
.vip-landing-page .urgency-section {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

.vip-landing-page .urgency-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.vip-landing-page .urgency-badge {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    animation: vipPulse 2s infinite;
}

@keyframes vipPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.vip-landing-page .urgency-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.vip-landing-page .urgency-subtext {
    font-size: 16px;
    color: #666;
}

/* Features Section */
.vip-landing-page .features-section {
    background: #fff;
    padding: 60px 20px;
    width: 100%;
}

.vip-landing-page .features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.vip-landing-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.vip-landing-page .feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-landing-page .feature-card:hover {
    transform: translateY(-5px);
}

.vip-landing-page .feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.vip-landing-page .feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.vip-landing-page .feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vip-landing-page .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }

    .vip-landing-page .hero-headline {
        font-size: 36px;
    }

    .vip-landing-page .hero-subheadline {
        font-size: 20px;
    }

    .vip-landing-page .form-container {
        padding: 30px 20px;
    }

    .vip-landing-page .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vip-landing-page .benefits-list li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .vip-landing-page .hero-headline {
        font-size: 28px;
    }

    .vip-landing-page .hero-subheadline {
        font-size: 18px;
    }

    .vip-landing-page .form-container {
        padding: 24px 16px;
    }

    .vip-landing-page .cta-button {
        padding: 18px 24px;
        font-size: 18px;
        min-height: 56px; /* Better touch target for mobile */
    }

    .vip-landing-page .form-group input,
    .vip-landing-page .form-group select,
    .vip-landing-page .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* Better touch target */
    }

    .vip-landing-page .accordion-toggle {
        padding: 14px 16px;
        font-size: 15px;
    }

    .vip-landing-page .accordion-content.active {
        padding: 16px;
    }
}
