/* ═══════════════════════════════════════════
   DESIGN TOKENS — NexVybe Forest Green + Gold
   ═══════════════════════════════════════════ */
:root {
    --clr-bg-dark: #0F3024;
    --clr-bg-light: #F5E6C8;
    --clr-accent: #E5B94E;
    --clr-text-dark: #1A3C2A;
    --clr-text-light: #F5E6C8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: 0.3s ease;
}

/* ═══════════════════════════════════════════
   GLOBAL RESET + BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-dark);
    background-color: var(--clr-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ═══════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════ */
.section-dark {
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-light);
    padding: 6rem 0;
}

/* Hero section — needed for the shader background */
.hero {
    position: relative;
    overflow: hidden;
}

#shader-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.section-light {
    background-color: var(--clr-bg-light);
    color: var(--clr-text-dark);
    padding: 6rem 0;
}

.section-tag {
    font-size: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.15;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    padding: 1rem 2rem;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-bg-dark);
}

.btn-primary:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 185, 78, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--clr-text-dark);
    color: var(--clr-text-dark);
}

.btn-outline:hover {
    background-color: var(--clr-text-dark);
    color: var(--clr-bg-light);
}

.btn-large {
    padding: 1.15rem 2.5rem;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 48, 36, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-light);
    transition: color var(--transition-smooth);
}

.nav-link:hover {
    color: var(--clr-accent);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-link:hover {
        color: var(--clr-accent);
    }
}

.nav-cta {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-shader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: #F5E6C8;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: #F5E6C8;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-text {
        font-size: 1.1rem;
    }
}

.about-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-highlight {
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    margin-top: 1rem;
}

.about-subtitle {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 1.25rem;
}

.about-promise {
    margin-top: 4rem;
    padding: 2.5rem;
    border-left: 4px solid var(--clr-accent);
    background-color: rgba(15, 48, 36, 0.04);
    border-radius: 0 16px 16px 0;
}

.about-promise p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════
   SERVICES — Grid Layout
   ═══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-card {
    background: rgba(22, 64, 48, 0.5);
    border: 1px solid rgba(229, 185, 78, 0.12);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 185, 78, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.03);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--clr-text-light);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 1.25rem;
}

.service-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.service-tags li {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(245, 230, 200, 0.8);
}

/* ═══════════════════════════════════════════
   COLLABORATION SECTION
   ═══════════════════════════════════════════ */
.collaboration {
    padding: 5rem 0;
    text-align: center;
}

.collab-tag {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--clr-accent);
}

.collab-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.collab-logo {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--transition-smooth);
}

.collab-logo:hover {
    opacity: 1;
}

.collab-x {
    font-size: 2rem;
    color: var(--clr-accent);
    opacity: 0.6;
}

.collab-partner {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-light);
    transition: color var(--transition-smooth);
}

.collab-partner:hover {
    color: var(--clr-accent);
}

/* ═══════════════════════════════════════════
   SELECTED WORKS — Grid + Overlay
   ═══════════════════════════════════════════ */
.works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.work-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .work-item:first-child {
        margin-top: 0;
    }

    .work-item:last-child {
        margin-top: 6rem;
    }
}

.work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    transition: transform 0.4s ease;
}

.work-card:hover {
    transform: translateY(-6px);
}

.work-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 48, 36, 0.9), transparent);
}

.work-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 0.25rem;
}

.work-overlay p {
    font-size: 0.9rem;
    color: var(--clr-accent);
    opacity: 0.9;
}

.work-attribution {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-accent);
    opacity: 0.85;
    padding-left: 0.5rem;
    font-style: italic;
}

/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */
.pricing-header {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Light card style (Starter Pack, Dynamic Pack) */
.pricing-card {
    background: var(--clr-bg-light);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid var(--clr-accent);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Dark card style (Standard Pack, Studio Pack) */
.pricing-card.highlighted {
    background: var(--clr-bg-dark);
    color: var(--clr-text-light);
    border-color: var(--clr-bg-dark);
}

.pricing-card.highlighted h3 {
    color: var(--clr-text-light);
}

.pricing-card.highlighted .price,
.pricing-card.highlighted .currency,
.pricing-card.highlighted .amount {
    color: var(--clr-text-light);
}

.pricing-card.highlighted .pricing-desc {
    color: var(--clr-text-light);
    opacity: 0.7;
}

.pricing-card.highlighted .btn-primary {
    background-color: var(--clr-text-light);
    color: var(--clr-bg-dark);
}

.pricing-card.highlighted .btn-primary:hover {
    background-color: var(--clr-accent);
    color: var(--clr-bg-dark);
}

.pricing-card.highlighted .features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: var(--clr-text-light);
}

.pricing-card.highlighted .features-list li::before {
    color: var(--clr-accent);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-accent);
    color: var(--clr-bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1.25rem;
    border-radius: 100px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-desc {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-weight: 700;
}

.features-list li:last-child {
    border-bottom: none;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact {
    position: relative;
    padding: 8rem 0;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(229, 185, 78, 0.1);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 72px;
    width: auto;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 185, 78, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════
   ANIMATIONS — Smooth Scroll Reveals
   ═══════════════════════════════════════════ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    position: relative;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-size: 5rem;
    color: var(--clr-accent);
    opacity: 0.15;
    font-family: serif;
    line-height: 1;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */

/* Main CTA — Book a Free Call */
.contact-cta {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 0 30px rgba(229, 185, 78, 0.3);
    transition: all 0.3s ease;
}

.contact-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(229, 185, 78, 0.5);
}

/* WhatsApp & Email cards container */
.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Individual contact option card */
.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border: 1.5px solid rgba(229, 185, 78, 0.3);
    border-radius: 16px;
    background: rgba(229, 185, 78, 0.05);
    color: var(--clr-text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 240px;
}

.contact-option:hover {
    border-color: var(--clr-accent);
    background: rgba(229, 185, 78, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 185, 78, 0.15);
}

.contact-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(229, 185, 78, 0.15);
    color: var(--clr-accent);
    flex-shrink: 0;
}

.contact-option-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-option-text strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-option-text small {
    font-size: 0.82rem;
    opacity: 0.65;
}