/* youtube-promotion.css */

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --primary-sky: #7acef0;
    --primary-sky-hover: #5abce7;
    --yt-red: #ff0000;
    --text-dark: #212529;
    --text-muted: #676971;
    --bg-light: #ffffff;
    --bg-section: #f8f9fa;
    --border-light: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --font-main: 'Outfit', sans-serif;
    --container-width: 1200px;
    --success-green: #2ecc71;
    --error-red: #e74c3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

p {
    color: var(--text-muted);
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-sky), var(--text-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-sky {
    display: inline-block;
    background-color: var(--primary-sky);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 250px;
}

.btn-sky:hover {
    background-color: var(--primary-sky-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 206, 240, 0.4);
}

.btn-outline-sky {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(122, 206, 240, 0.05);
    color: var(--primary-sky);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2.5px solid var(--primary-sky);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(122, 206, 240, 0.1);
    min-width: 250px;
}

.btn-outline-sky:hover {
    background-color: var(--primary-sky);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 206, 240, 0.4);
}

.btn-outline-sky i {
    font-size: 1.2rem;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.8);
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-modal .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo img {
    filter: brightness(0);
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-sky);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-auth a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.nav-auth a:hover {
    color: var(--primary-sky);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 100% 50%, rgba(122, 206, 240, 0.1), transparent 70%);
}

.price-highlight {
    color: var(--primary-sky);
    font-weight: 800;
    position: relative;
    padding: 0 5px;
}

.price-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(122, 206, 240, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-color: #fcfdfe; /* New distinct light background */
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 10;
}

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

.stat-card {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(0,0,0,0.03);
}

.stat-icon {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-data h4 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-data p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Clients Marquee Section */
.clients-section {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
}

.clients-container {
    display: block; /* Changed to block to allow title on top */
    overflow: hidden;
    user-select: none;
}

.clients-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 50px;
    opacity: 0.7;
}

.marquee-wrapper {
    display: flex;
    gap: 60px;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    overflow: hidden;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 60px;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

.marquee-content img {
	height: 70px;
	width: auto;
	filter: grayscale(1) opacity(0.8);
	transition: all 0.3s ease;
}

.marquee-content img:hover {
	filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Why Choose Us Section */
.why-choose-us {
    background: #fcfdfe;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.feature-tag {
    background: white;
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-3px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.campaign-badge {
    display: inline-block;
    background: rgba(122, 206, 240, 0.15);
    color: var(--primary-sky);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    max-width: 900px;
    margin: 0 auto 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Video Mockup */
.hero-mockup {
    position: relative;
    perspective: 1000px;
}

.mockup-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 20px;
    position: relative;
    transform: rotateY(-10px) rotateX(10px);
    transition: all 0.5s ease;
}

.mockup-card:hover {
    transform: rotateY(0) rotateX(0);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--yt-red);
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.05);
}

.growth-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
    height: 100px;
    margin-top: 20px;
    padding: 10px;
    background: var(--bg-section);
    border-radius: 12px;
}

.stat-bar {
    width: 100%;
    background: var(--primary-sky);
    border-radius: 4px;
    animation: growHeight 2s ease-out forwards;
}

@keyframes growHeight {
    from { height: 0; }
    to { height: var(--h); }
}

.floating-stat {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.stat-1 { top: -20px; left: -20px; }
.stat-2 { bottom: 20px; right: -30px; }

.stat-val { font-weight: 800; color: var(--text-dark); }
.stat-lbl { font-size: 0.8rem; color: var(--text-muted); }

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.comp-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border: 2px solid var(--border-light);
    position: relative;
}

.comp-card.recommended {
    border-color: var(--yt-red);
    background: #fffafa;
}

.rec-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--yt-red);
    color: white;
    padding: 6px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.comp-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comp-header img { height: 35px; width: fit-content; }
.comp-card h3 { font-size: 1.8rem; }

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.comp-list i { font-size: 1.2rem; }
.list-x i { color: var(--error-red); }
.list-check i { color: var(--success-green); }

/* How It Works Section */
.how-to {
    background-color: var(--text-dark);
    color: white;
}

.video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0 60px;
}

.video-embed-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.how-to .services-title h2 { color: white; }

.steps-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-mockup {
    background: #1a1a24;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.mockup-browser-header {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27c93f; }

.step-number-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-content h3 { margin-bottom: 15px; font-size: 1.5rem; }
.step-content p { color: rgba(255,255,255,0.6); }

.mockup-form {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-input { height: 35px; background: rgba(255,255,255,0.1); border-radius: 6px; }
.mock-btn { height: 40px; background: var(--primary-sky); border-radius: 6px; margin-top: 5px; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Services Section */
.services-title {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-sky);
    background-color: rgba(122, 206, 240, 0.02);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(122, 206, 240, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-sky);
    margin-bottom: 24px;
}

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

.price-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 4px 12px;
    background: #fff5f5;
    color: var(--yt-red);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-section);
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-toggle {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
}

.faq-content {
    padding: 0 24px 20px;
    display: none;
    color: var(--text-muted);
}

.faq-item.active .faq-content {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Approach Section */
.approach-section {
    background: linear-gradient(180deg, #05070a 0%, #0f172a 100%);
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(122, 206, 240, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.approach-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 70px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

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

.approach-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.approach-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(122, 206, 240, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(122, 206, 240, 0.1);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: rgba(122, 206, 240, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-sky);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-sky);
    color: white;
    box-shadow: 0 0 20px rgba(122, 206, 240, 0.4);
}

.approach-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.approach-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.approach-card strong {
    color: white;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .approach-section {
        padding: 80px 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p { margin: 0 auto 40px; }
    .hero-mockup { margin-top: 60px; }
    
    .comparison-grid { grid-template-columns: 1fr; }
    .steps-mockup-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-auth {
        display: none !important;
    }

    .nav-container {
        justify-content: center !important;
    }

    .floating-stat {
        display: none !important;
    }

    .hero {
        padding: 40px 0 20px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-mockup {
        margin-top: 10px !important;
    }

    .stats-section {
        padding: 20px 0;
    }

    .section-padding {
        padding: 15px 0;
    }

    .clients-section {
        padding: 10px 0;
        overflow: hidden;
    }

    .services-title {
        margin-bottom: 15px;
    }

    .services-title h2 {
        font-size: 1.5rem;
    }

    .video-wrapper {
        margin: 10px 0 20px !important;
    }

    .step-card {
        margin-bottom: 10px;
        padding: 15px;
    }

    .video-embed-container {
        border-radius: 12px;
        width: 100%;
    }

    .logo img {
        height: 35px !important;
    }

    .whatsapp-widget {
        bottom: 15px !important;
        right: 15px !important;
        transform: scale(0.9);
    }
}
