/* =================================================
   NexGen Media - Dual Tone (Green + Yellow) + Text Motion
   ================================================= */

:root {
    --bg-primary: #06080c;
    --bg-card: #0f131a;
    --bg-card-hover: #151a24;
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Primary & Secondary Color Palette */
    --accent-green: #ffe600;
    --accent-glow-green: rgba(155, 240, 11, 0.35);
    
    --accent-yellow: #ffe600;
    --accent-glow-yellow: rgba(255, 230, 0, 0.35);
    
    --text-main: #f3f4f6;
    --text-muted: #94a3b8;
    --transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    --container-width: 1240px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dual Cursor Spotlight Glow */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.08) 0%, rgba(155, 240, 11, 0.05) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6.5rem 0;
    position: relative;
}

.text-center { text-align: center; }

/* Text Animations & Glows */
.text-split-anim {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.text-split-anim span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}

.highlight-green {
    color: var(--accent-green);
    text-shadow: 0 0 25px var(--accent-glow-green);
}

.highlight-yellow {
    color: var(--accent-yellow);
    text-shadow: 0 0 25px var(--accent-glow-yellow);
}

/* Section Badges (Yellow Tinted) */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-yellow);
    background: rgba(255, 230, 0, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 230, 0, 0.25);
}

.section-title {
    font-size: 2.85rem;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 1.2rem;
    color: #fff;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 3.5rem auto;
}

/* Buttons (Green Primary, Yellow Outline) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-green);
    color: #000;
    box-shadow: 0 0 25px var(--accent-glow-green);
}

.btn-primary:hover {
    background-color: #87d605;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(155, 240, 11, 0.5);
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: #000;
    box-shadow: 0 0 25px var(--accent-glow-yellow);
}

.btn-yellow:hover {
    background-color: #e6cf00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(255, 230, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--accent-glow-yellow);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 8, 12, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-yellow);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--accent-glow-yellow);
}

.logo-text span { color: var(--accent-green); }

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-yellow);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 13rem 0 8rem 0;
    position: relative;
    background: radial-gradient(circle at 60% 15%, rgba(255, 230, 0, 0.06) 0%, rgba(155, 240, 11, 0.04) 40%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.85rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.8px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats-row {
    display: flex;
    gap: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-pill strong {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
}

.stat-pill .symbol {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 800;
}

.stat-pill small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
}

.hero-card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-yellow);
    filter: blur(100px);
    opacity: 0.12;
    z-index: -1;
}

.hero-mockup-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-img:hover {
    transform: scale(1);
}

.floating-badge {
    position: absolute;
    background: rgba(15, 19, 26, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.3rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    z-index: 2;
}

.floating-badge i {
    font-size: 1.6rem;
    color: var(--accent-yellow);
}

.floating-badge small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-badge strong {
    font-size: 1.05rem;
    color: #fff;
}

.badge-top {
    top: 30px;
    right: 30px;
    animation: floatAnim 4s ease-in-out infinite;
}

.badge-bottom {
    bottom: 30px;
    left: 30px;
    animation: floatAnim 4s ease-in-out infinite 2s;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Marquee with Yellow & Green Accents */
.marquee-section {
    padding: 2.5rem 0;
    background: #000;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-track {
    display: flex;
    width: 200%;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    padding-right: 3.5rem;
}

.marquee-content i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* About Snippet */
.about-snippet-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.rounded-img {
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.snippet-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-checklist {
    margin-bottom: 2.25rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.feature-checklist i {
    color: var(--accent-green);
    background: rgba(155, 240, 11, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Services Section */
.services-section {
    background: rgba(15, 19, 26, 0.35);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.75rem 2.25rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
}

.service-card:hover {
    border-color: rgba(255, 230, 0, 0.4);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.highlighted-card {
    border-color: rgba(255, 230, 0, 0.35);
    background: linear-gradient(135deg, #0f131a 0%, #201e0a 100%);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 230, 0, 0.1);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--accent-yellow);
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.8rem;
    color: #fff;
}

/* Why Choose Us */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.75rem 2.25rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.why-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 230, 0, 0.06);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Guest Post Promo Banner */
.guest-post-promo {
    padding: 0 0 6.5rem 0;
}

.promo-box {
    background: linear-gradient(135deg, #0f131a 0%, #201e0a 100%);
    border: 1px solid rgba(255, 230, 0, 0.3);
    border-radius: 24px;
    padding: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.promo-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.75rem;
}

.promo-box h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.promo-box p {
    color: var(--text-muted);
    max-width: 600px;
}

/* Testimonials */
.testimonials-section {
    background: rgba(15, 19, 26, 0.35);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.75rem 2.25rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-card p {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.author-info strong {
    display: block;
    font-size: 1.05rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Lead Section */
.contact-lead-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: start;
}

.lead-info p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.direct-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-item i {
    width: 52px;
    height: 52px;
    background: rgba(255, 230, 0, 0.1);
    color: var(--accent-yellow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.contact-item strong {
    font-size: 1.1rem;
    color: #fff;
}

.lead-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.lead-form-wrapper h3 {
    font-size: 1.85rem;
    margin-bottom: 2rem;
}

.agency-form .form-group {
    margin-bottom: 1.35rem;
}

.agency-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.agency-form input,
.agency-form select,
.agency-form textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.agency-form input:focus,
.agency-form select:focus,
.agency-form textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 15px var(--accent-glow-yellow);
}

.agency-form select option {
    background: var(--bg-primary);
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Footer */
.site-footer {
    background: #030407;
    border-top: 1px solid var(--border-color);
    padding-top: 5.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 4.5rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 1.25rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: #000;
    border-color: var(--accent-yellow);
}

.footer-col h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 6px;
}

.footer-newsletter {
    display: flex;
    margin-top: 1rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px 0 0 10px;
    color: #fff;
    font-family: inherit;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.footer-newsletter button {
    background: var(--accent-yellow);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 10px 10px 0;
    color: #000;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: #e6cf00;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2.25rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--accent-yellow);
}

/* Page Headers */
.page-header {
    padding: 10rem 0 4rem 0;
    background: radial-gradient(circle at 50% 10%, rgba(255, 230, 0, 0.08) 0%, transparent 50%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}