/* ============================================
   NEW SECTIONS - WHY UGC, NICHES, ADVANTAGES
   ============================================ */

/* Navigation Logo Updates - Match Reference Site */
.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo-img-large {
    height: 110px !important;
    width: auto !important;
}

/* Remove UGC text completely */
.logo-text-ugc {
    display: none;
}

/* Hero Video Carousel */
.hero-video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.active {
    opacity: 0.4;
    z-index: 1;
}

/* CTA Video Carousel - Now in Contact Section */
.contact {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 !important;
    background: #000000;
    overflow: hidden;
}

.cta-video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.cta-video.active {
    opacity: 0.35;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Why UGC Section */
.why-ugc {
    background: var(--surface);
}

.why-ugc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all var(--duration) var(--ease);
    position: relative;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.why-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 72px;
    font-weight: 100;
    color: rgba(201, 165, 90, 0.1);
    line-height: 1;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201,165,90,0.1), rgba(240,212,134,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon i {
    font-size: 28px;
    color: var(--gold);
}

.why-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.why-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-tertiary);
}

.why-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

.why-cta {
    margin-top: 48px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(201,165,90,0.08), rgba(240,212,134,0.08));
    border: 1px solid var(--gold);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-box p {
    font-size: 18px;
    color: var(--text-tertiary);
    margin: 0;
}

/* Niches Section */
.niches {
    background: var(--surface-elevated);
}

.niches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.niche-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--duration) var(--ease);
    position: relative;
}

.niche-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.niche-card-featured {
    background: linear-gradient(135deg, rgba(201,165,90,0.1), rgba(240,212,134,0.05));
    border: 2px solid var(--gold);
}

.niche-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000000;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.niche-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201,165,90,0.15), rgba(240,212,134,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.niche-icon i {
    font-size: 36px;
    color: var(--gold);
}

.niche-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.niche-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-tertiary);
}

.niches-note {
    text-align: center;
    padding: 32px;
    background: rgba(201,165,90,0.05);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.niches-note p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.niches-note strong {
    color: var(--gold);
    font-weight: 600;
}

/* Advantages Section */
.advantages {
    background: var(--surface);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.advantage-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    transition: all var(--duration) var(--ease);
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.advantage-card-featured {
    background: linear-gradient(135deg, rgba(201,165,90,0.08), rgba(240,212,134,0.05));
    border: 2px solid var(--gold);
}

.advantage-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 96px;
    font-weight: 100;
    color: rgba(201, 165, 90, 0.08);
    line-height: 1;
}

.advantage-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    padding-right: 120px;
}

.advantage-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-tertiary);
}

.advantage-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

.advantage-benefits {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.production-callout {
    margin-top: 48px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.production-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(201,165,90,0.15) 0%, transparent 70%);
    z-index: 0;
}

.production-callout > * {
    position: relative;
    z-index: 1;
}

.callout-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.callout-icon i {
    font-size: 32px;
    color: #000000;
}

.production-callout h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
}

.production-callout p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.production-callout strong {
    color: var(--gold-bright);
    font-weight: 600;
}

/* Packages Section Updates */
.packages-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.packages-text-full h3 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.packages-text-full p {
    font-size: 17px;
    margin-bottom: 32px;
    text-align: center;
}

.packages-list {
    list-style: none;
    margin-bottom: 40px;
}

.packages-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}

.packages-list i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.packages-list strong {
    color: var(--gold);
    font-weight: 600;
}

.packages-text-full .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Social Media Statement */
.social-media-statement {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(201,165,90,0.08), rgba(240,212,134,0.05));
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.statement-icon {
    width: 72px;
    height: 72px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.statement-icon i {
    font-size: 32px;
    color: #000000;
}

.social-media-statement h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.social-media-statement p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Simple */
.contact-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-email-card {
    background: var(--surface);
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
}

.email-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.email-icon i {
    font-size: 48px;
    color: #000000;
}

.contact-email-card h3 {
    font-size: 36px;
    margin-bottom: 24px;
}

.email-link {
    display: block;
    font-size: 24px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--gold-bright);
    transform: scale(1.05);
}

.email-note {
    font-size: 15px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.contact-info-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--surface-muted);
    border-radius: 16px;
}

.info-item i {
    font-size: 32px;
    color: var(--gold);
}

.info-item span {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
}

/* Footer Logo Updates */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo .logo-text-ugc {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

/* Eclectic Font for Headings */
h1, h2, h3, h4 {
    font-family: 'Righteous', cursive;
    letter-spacing: 0.02em;
}

body, p, li, span, a, input, textarea, select {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Image Styling - Uniform Cropping with Centered Positioning */
.creator-image img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}

/* Specific photo adjustments */
.creator-card:nth-child(1) .creator-image img {
    /* Pierson - pull up to show face better */
    object-position: center 20%;
}

.creator-card:nth-child(2) .creator-image img {
    /* Liz - keep as-is */
    object-position: center center;
}

.creator-card:nth-child(3) .creator-image img {
    /* Mo - center with sunglasses photo */
    object-position: center 45%;
    aspect-ratio: 1;
}

/* Fix scroll bleeding - prevent content shift */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
}

.hero {
    position: relative;
    overflow: hidden;
}

/* Prevent video area bleeding during scroll */
.hero-video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Footer Logo Updates - Remove UGC */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
}

/* Hide UGC text in footer */
.footer-logo .logo-text-ugc {
    display: none;
}

/* New Pricing Section Styles */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h3 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
}

.pricing-intro {
    font-size: 18px;
    text-align: center;
    color: var(--text-tertiary);
    margin-bottom: 64px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.pricing-category {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-category-title {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
    text-align: center;
}

.pricing-category-desc {
    font-size: 16px;
    color: var(--text-tertiary);
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.pricing-card-featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201,165,90,0.05), rgba(240,212,134,0.05));
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000000;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-card-header h5 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 56px;
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
}

.pricing-period {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.pricing-license-note {
    background: rgba(201,165,90,0.08);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
}

.pricing-license-note i {
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-license-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-license-note strong {
    color: var(--gold);
    font-weight: 600;
}

.pricing-cta {
    text-align: center;
}

/* Contact Section Styling Enhancements */
.contact-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
}

.contact-email-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    border: 1px solid rgba(201, 165, 90, 0.2);
    box-shadow: var(--shadow-xl);
}

.email-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a55a, #f0d486);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.email-icon i {
    font-size: 36px;
    color: #000000;
}

.contact-email-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.email-link {
    display: block;
    font-size: 24px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
    transition: all 0.3s var(--ease);
}

.email-link:hover {
    color: var(--gold-bright);
    transform: translateY(-2px);
}

.email-note {
    font-size: 16px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.contact-info-simple {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    border: 1px solid rgba(201, 165, 90, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--gold);
    font-size: 24px;
    width: 32px;
    text-align: center;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .why-ugc-grid,
    .niches-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-benefits {
        grid-template-columns: 1fr;
    }
    
    .contact-info-simple {
        grid-template-columns: 1fr;
    }
    
    .nav-logo-img-large {
        height: 90px !important;
    }
    
    .footer-logo-img {
        height: 90px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pricing-section h3 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .why-number {
        font-size: 56px;
        top: 16px;
        right: 16px;
    }
    
    .advantage-number {
        font-size: 64px;
        top: 24px;
        right: 24px;
    }
    
    .advantage-title {
        padding-right: 80px;
        font-size: 24px;
    }
    
    .production-callout {
        padding: 40px 24px;
    }
    
    .nav-logo-img-large {
        height: 70px !important;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    .contact-email-card {
        padding: 48px 32px;
    }
    
    .email-link {
        font-size: 20px;
    }
    
    .social-media-statement {
        padding: 40px 32px;
    }
    
    .pricing-section h3 {
        font-size: 36px;
    }
    
    .pricing-category-title {
        font-size: 28px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-price {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .why-card,
    .niche-card,
    .advantage-card {
        padding: 32px 24px;
    }
    
    .advantage-title {
        font-size: 22px;
        padding-right: 0;
        margin-bottom: 24px;
    }
    
    .advantage-number {
        position: static;
        display: block;
        font-size: 48px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .nav-logo-img-large {
        height: 60px !important;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .contact-email-card {
        padding: 40px 24px;
    }
    
    .contact-email-card h3 {
        font-size: 28px;
    }
    
    .email-link {
        font-size: 18px;
    }
    
    .social-media-statement {
        padding: 32px 24px;
    }
    
    .social-media-statement h3 {
        font-size: 24px;
    }
    
    .pricing-section h3 {
        font-size: 32px;
    }
    
    .pricing-category-title {
        font-size: 24px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-price {
        font-size: 40px;
    }
    
    .pricing-license-note {
        padding: 20px 24px;
    }
}