/*
Theme Name: SocialSides
Theme URI: https://socialsides.com
Author: SocialSides Team
Author URI: https://socialsides.com
Description: Affordable social media management theme for growing businesses. A modern, responsive theme with built-in pricing, services, testimonials, and FAQ sections.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: socialsides
Tags: one-page, custom-menu, featured-images, theme-options
*/


/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    /* Primary Colors */
    --orange-vibrant: #FF6B35;
    --orange-deep: #E85A24;
    --orange-soft: #FF8F5C;
    --peach-accent: #FFB088;
    --cream-bg: #FFF0E8;

    /* Tier Colors */
    --bronze: #CD7F32;
    --silver: #7B8D9E;
    --gold: #D4AF37;

    /* Neutral Colors */
    --navy-dark: #1A1A2E;
    --gray-muted: #4A4A68;
    --white: #FFFFFF;
    --off-white: #FAFAFA;

    /* Gradients */
    --gradient-orange: linear-gradient(135deg, var(--orange-vibrant), var(--orange-soft));
    --gradient-peach: linear-gradient(135deg, var(--cream-bg), var(--peach-accent));

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.12);
    --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.3);

    /* Typography - Font Pairing */
    --font-display: 'Bricolage Grotesque', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

/* Scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

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

/* Subtle noise texture overlay for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea {
    font-family: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-muted);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--orange-vibrant);
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--cream-bg);
    color: var(--orange-vibrant);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy-dark);
    border: 2px solid var(--cream-bg);
}

.btn-secondary:hover {
    border-color: var(--orange-vibrant);
    color: var(--orange-vibrant);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-white {
    background: var(--white);
    color: var(--orange-vibrant);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--orange-vibrant);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Button Focus States for Accessibility */
.btn:focus {
    outline: 2px solid var(--orange-vibrant);
    outline-offset: 2px;
}

.btn:focus:not(:focus-visible) {
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid var(--orange-vibrant);
    outline-offset: 2px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Header & Navigation
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: box-shadow var(--transition-fast);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    color: var(--orange-vibrant);
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-muted);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--orange-vibrant);
}

.nav-cta {
    padding: 12px 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy-dark);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Menu */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 24px;
        gap: 0;
        background: var(--white);
        transform: translateX(100%);
        transition: transform var(--transition-medium);
        z-index: 9999;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links.active li {
        display: block;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 18px;
        font-weight: 600;
        padding: 18px 20px;
        background: var(--off-white);
        border-radius: 12px;
        margin-bottom: 12px;
        transition: all var(--transition-fast);
        color: var(--navy-dark);
    }

    .nav-links a:hover {
        background: var(--cream-bg);
        color: var(--orange-vibrant);
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    padding: 100px 0 40px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-bg) 100%);
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-shape-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--peach-accent) 0%, transparent 70%);
    top: -250px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange-soft) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--cream-bg) 0%, transparent 70%);
    top: 40%;
    left: 45%;
    animation: float 12s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-muted);
    margin-bottom: 24px;
    max-width: 500px;
}

/* USP Badges */
.usp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.usp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--cream-bg);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.usp-icon {
    font-size: 16px;
}

.usp-badge.highlight {
    background: var(--cream-bg);
    border-color: var(--peach-accent);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Dashboard Mockup */
.hero-image {
    position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--off-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--peach-accent);
}

.mockup-dots span:first-child {
    background: #FF6B6B;
}

.mockup-dots span:nth-child(2) {
    background: #FFD93D;
}

.mockup-dots span:last-child {
    background: #6BCB77;
}

.mockup-title {
    font-size: 13px;
    color: var(--gray-muted);
}

.mockup-content {
    display: flex;
    padding: 20px;
    gap: 20px;
    min-height: 300px;
}

.mockup-sidebar {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    height: 40px;
    background: var(--off-white);
    border-radius: 8px;
}

.sidebar-item.active {
    background: var(--gradient-orange);
}

.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-placeholder {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--gradient-orange);
    border-radius: 6px 6px 0 0;
    animation: grow 1s ease-out forwards;
    transform-origin: bottom;
}

@keyframes grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.stats-row {
    display: flex;
    gap: 12px;
}

.stat-card {
    flex: 1;
    padding: 16px;
    background: var(--off-white);
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 12px 18px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 600;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 120px;
    left: -40px;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 40px;
    right: 20px;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 24px;
    }

    .usp-badges {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-card-2 {
        left: 0;
    }
}

/* ========================================
   Pricing Overview Section
======================================== */
.pricing-overview {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream-bg) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-overview::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.pricing-overview-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid var(--cream-bg);
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-overview-card:hover {
    transform: translateY(-10px) rotate(0.5deg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.pricing-overview-card.featured {
    background: linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, var(--orange-vibrant), var(--orange-soft)) border-box;
    border: 3px solid transparent;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
    transform: scale(1.02);
}

.pricing-overview-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.25);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.pricing-tier {
    display: inline-block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pricing-tier.bronze {
    background: linear-gradient(135deg, #CD7F32, #E8A84E);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.3);
}

.pricing-tier.silver {
    background: linear-gradient(135deg, #6B7D8E, #9AACBE);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(107, 125, 142, 0.3);
}

.pricing-tier.gold {
    background: linear-gradient(135deg, #D4AF37, #F4D04C);
    color: var(--navy-dark);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.pricing-amount-compact {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.pricing-amount-compact .currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-dark);
}

.pricing-amount-compact .price-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1;
}

.pricing-overview-card.featured .price-value {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-amount-compact .period {
    font-size: 16px;
    color: var(--gray-muted);
    font-weight: 500;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--gray-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Compact pricing features list for overview cards */
.pricing-features-compact {
    text-align: left;
    margin-bottom: 24px;
    padding: 0 8px;
}

.pricing-features-compact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--navy-dark);
    border-bottom: 1px solid var(--off-white);
}

.pricing-features-compact li:last-child {
    border-bottom: none;
}

.pricing-features-compact .feature-check {
    color: var(--orange-vibrant);
    font-weight: bold;
    flex-shrink: 0;
}

/* Custom File Upload Area */
.file-upload-area {
    position: relative;
    border: 2px dashed var(--cream-bg);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--off-white);
}

.file-upload-area:hover {
    border-color: var(--peach-accent);
    background: var(--white);
}

.file-upload-area.dragover {
    border-color: var(--orange-vibrant);
    background: rgba(255, 107, 53, 0.05);
}

.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
}

.upload-icon {
    font-size: 20px;
}

.upload-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-dark);
}

.file-name {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--orange-vibrant);
}

.section-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ========================================
   Platform Feature Design Variations
======================================== */

/* Common platform feature styles */
.platform-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start !important;
    gap: 8px;
}

.platform-feature .feature-check {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Design 2: Icon Circles (used for all pricing plans) */
.platform-design-2 {
    margin-left: 0;
}

.platform-design-2 strong {
    display: inline;
    font-size: 13px;
}

.platform-icons-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.platform-icon-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border: 2px solid #DEE2E6;
    border-radius: 50%;
    color: #495057;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.platform-icon-circle:hover {
    background: linear-gradient(135deg, #6B7D8E 0%, #9AACBE 100%);
    border-color: #6B7D8E;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(107, 125, 142, 0.35);
}

.platform-icon-circle::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 6px 12px;
    background: var(--navy-dark);
    color: white;
    font-size: 11px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.platform-icon-circle:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Responsive adjustments for platform designs */
@media (max-width: 600px) {
    .platform-icons-row {
        gap: 6px;
    }

    .platform-icon-circle {
        width: 32px;
        height: 32px;
    }

    .platform-icon-circle svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 900px) {
    .pricing-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto 40px;
    }

    .pricing-overview-card.featured {
        transform: none;
    }

    .pricing-overview-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 600px) {
    .pricing-overview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ========================================
   Free Sample Section
======================================== */
.free-sample {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-bg) 100%);
}

.free-sample-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.free-sample-content {
    max-width: 500px;
}

.free-sample-text {
    font-size: 18px;
    color: var(--gray-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.free-sample-emphasis {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 32px;
}

.sample-benefits h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefits-list .check {
    color: var(--orange-vibrant);
    font-weight: bold;
}

/* Lead Form */
.free-sample-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.lead-form .form-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--cream-bg);
    border-radius: 12px;
    transition: border-color var(--transition-fast);
    background: var(--off-white);
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--orange-vibrant);
    background: var(--white);
}

.lead-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-trust {
    text-align: center;
    font-size: 14px;
    color: var(--gray-muted);
    margin-top: 16px;
}

.lead-form .error-message {
    display: block;
    font-size: 12px;
    color: #FF6B6B;
    margin-top: 4px;
}

.lead-form .form-group.error input,
.lead-form .form-group.error textarea {
    border-color: #FF6B6B;
}

@media (max-width: 900px) {
    .free-sample-grid {
        grid-template-columns: 1fr;
    }

    .free-sample-content {
        max-width: 100%;
        text-align: center;
    }

    .benefits-list {
        align-items: center;
    }
}

/* ========================================
   Why Social Media Section
======================================== */
.why-social {
    padding: var(--section-padding) 0;
    background: var(--navy-dark);
    color: var(--white);
}

.why-social-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-social .section-title {
    color: var(--white);
    margin-bottom: 32px;
}

.why-social-text {
    font-size: 20px;
    line-height: 1.8;
}

.why-social-text p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.why-social-text .emphasis {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange-vibrant);
    margin-top: 32px;
}

/* ========================================
   Services Section
======================================== */
.services {
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-bounce);
}

.service-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--peach-accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: var(--cream-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Very small screens (320px) - Fix text cramping */
@media (max-width: 360px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .usp-badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .btn {
        font-size: 14px;
        padding: 14px 20px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ========================================
   How It Works Section - Accordion Style
======================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--cream-bg) 0%, var(--off-white) 100%);
}

.how-it-works .section-title {
    color: var(--navy-dark);
}

.how-it-works .section-subtitle {
    color: var(--gray-muted);
}

.how-it-works .highlight {
    color: var(--orange-vibrant);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Accordion Styles */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: 16px;
}

.accordion-icon-emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
}

.accordion-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-vibrant);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.accordion-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-toggle {
    background: var(--orange-deep);
}

.accordion-item.active .accordion-toggle svg {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-muted);
    line-height: 1.7;
    margin: 0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

/* How It Works Image */
.how-it-works-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.how-it-works-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.floating-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-dark);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 900px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-it-works-image {
        order: -1;
    }

    .how-it-works-image img {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .accordion-header {
        padding: 16px 18px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-icon-emoji {
        font-size: 20px;
    }

    .accordion-toggle {
        width: 28px;
        height: 28px;
    }

    .accordion-toggle svg {
        width: 12px;
        height: 12px;
    }

    .accordion-content p {
        padding: 0 18px 16px;
        font-size: 14px;
    }

    .how-it-works-image img {
        height: 280px;
    }

    .floating-badge {
        top: 20px;
        right: 20px;
        padding: 10px 16px;
    }
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials {
    padding: var(--section-padding) 0;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    background: var(--cream-bg);
    border-color: var(--peach-accent);
}

.stars {
    color: #FFD93D;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-muted);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
}

.author-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-muted);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ========================================
   FAQ Section
======================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: #D1D5DB;
}

.faq-item.faq-open {
    border-color: #D1D5DB;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    background: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    gap: 20px;
    color: var(--navy-dark);
    border: none;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-question:hover {
    color: var(--navy-dark);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
}

.faq-item.faq-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 20px 28px 28px;
    font-size: 16px;
    color: var(--gray-muted);
    line-height: 1.8;
    border-top: 1px solid #E5E7EB;
    margin: 0;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 16px 20px 24px;
        font-size: 15px;
    }

    .faq-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   Final CTA Section
======================================== */
.final-cta {
    padding: var(--section-padding) 0;
    background: var(--gradient-orange);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 46px);
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta .highlight {
    color: var(--navy-dark);
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 600px) {
    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   Footer
======================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--navy-dark);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a,
.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover,
.social-link:hover {
    background: var(--orange-vibrant);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--orange-vibrant);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

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

    .footer-brand {
        grid-column: span 1;
    }
}

/* ========================================
   Form Group Shared Styles
======================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--cream-bg);
    border-radius: 12px;
    transition: border-color var(--transition-fast);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-vibrant);
    background: var(--white);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #FF6B6B;
}

.error-message {
    display: block;
    font-size: 12px;
    color: #FF6B6B;
    margin-top: 4px;
}

/* ========================================
   Reveal Animations
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Legal Pages Styles
======================================== */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.legal-page .last-updated {
    color: var(--gray-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--navy-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--gray-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--gray-muted);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-page a {
    color: var(--orange-vibrant);
}

.legal-page a:hover {
    text-decoration: underline;
}

/* ========================================
   Prefers Reduced Motion
======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   Mobile Overflow Fixes (under 500px)
======================================== */
@media (max-width: 500px) {

    /* Global overflow containment */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
    }

    /* Hide decorative shapes that cause overflow */
    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        display: none;
    }

    /* Hero section fixes */
    .hero {
        padding: 100px 0 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .usp-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    /* Pricing Overview Grid */
    .pricing-overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-overview-card {
        max-width: 100%;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-step {
        max-width: 100%;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Free Sample Grid */
    .free-sample-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Quality List */
    .quality-list {
        padding-left: 0;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 16px;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Pricing comparison - hide on very small screens */
    .pricing-comparison {
        display: none;
    }

    .mobile-pricing-cards {
        display: block;
    }
}

/* ========================================
   Contact Form 7 Styling
======================================== */
.wpcf7 .form-group {
    margin-bottom: 1.5rem;
}

.wpcf7 .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: var(--white);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: var(--orange-vibrant);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #999;
}

.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 input[type="file"] {
    padding: 12px;
    border: 2px dashed #e8e8e8;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    width: 100%;
}

.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 16px 32px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
}

.wpcf7 .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.wpcf7-form.sent .wpcf7-response-output {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.wpcf7 .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
}

.wpcf7 .wpcf7-spinner {
    margin-left: 10px;
}


/* ========================================
   Logo with Star Icon + Text
======================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    letter-spacing: -0.02em;
}

.logo:hover .logo-text {
    color: #E85A24;
}

.logo:hover .logo-icon-img {
    transform: scale(1.05);
}

/* Header scrolled state */
.header.scrolled .logo-icon-img {
    height: 35px;
    width: 35px;
}

.header.scrolled .logo-text {
    font-size: 1.35rem;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-icon-img {
        height: 35px;
        width: 35px;
    }
    .logo-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo-icon-img {
        height: 30px;
        width: 30px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .logo {
        gap: 8px;
    }
}

/* Footer logo styling */
.footer .logo-icon-img {
    height: 35px;
    width: 35px;
}

.footer .logo-text {
    font-size: 1.35rem;
}


/* Fix Contact Form 7 Spacing */
.wpcf7 br {
    display: none;
}
.wpcf7 p {
    margin-bottom: 16px;
}
.wpcf7 label {
    display: block;
    margin-bottom: 8px;
}

/* Fix for image upload design issue */
.file-upload-area {
    position: relative !important;
    min-height: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}
.file-upload-area p {
    margin: 0 !important;
    width: 100% !important;
}
.file-upload-area .wpcf7-form-control-wrap {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 10 !important;
}
.file-upload-area input[type="file"] {
    width: 100% !important;
    height: 100% !important;
    cursor: pointer !important;
    display: block !important;
}

/* Final Fix for image upload design issue */
.file-upload-area {
    position: relative !important;
    min-height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    cursor: pointer !important;
}
.file-upload-area p {
    margin: 0 !important;
    width: 100% !important;
    pointer-events: none !important;
}
.file-upload-area .wpcf7-form-control-wrap {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    display: block !important;
}
.file-upload-area input[type="file"] {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}
.file-upload-area label {
    pointer-events: none !important;
}