/* ============================================================
   LUXE LENS STUDIO — Design System
   Dark Luxury  |  #080C15 · #F0F2F5 · #C9A96E
   ============================================================ */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #080C15;
    --bg-alt: #0D1220;
    --text: #F0F2F5;
    --accent: #C9A96E;
    --accent-glow: rgba(201, 169, 110, .35);
    --card: #0D1220;
    --border: #1A2035;
    --muted: #888;
    --radius: 16px;
    --radius-lg: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* --- Custom Cursor --- */
#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform .1s ease;
    mix-blend-mode: difference;
}

#cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: width .3s, height .3s, border-color .3s;
    transform: translate(-50%, -50%);
}

#cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent-glow);
}

#cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 110, .06) 0%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {

    #cursor-dot,
    #cursor-ring,
    #cursor-glow {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* --- Navbar --- */
.navbar {
    background: rgba(8, 12, 21, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: .8rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text) !important;
    letter-spacing: -.5px;
}

.navbar-brand span {
    font-weight: 300;
}

.nav-link {
    color: var(--muted) !important;
    font-size: .9rem;
    font-weight: 500;
    transition: color .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text) !important;
}

.btn-outline-accent {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    padding: .45rem 1.4rem;
    font-size: .85rem;
    font-weight: 600;
    transition: all .3s;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px var(--accent-glow);
}

/* --- Buttons --- */
.btn-glow {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: .75rem 2rem;
    font-size: .95rem;
    position: relative;
    transition: all .3s;
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(201, 169, 110, .15);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(201, 169, 110, .25);
    color: #000;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: .7rem 1.8rem;
    font-size: .9rem;
    font-weight: 500;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--text);
    color: var(--text);
    transform: translateY(-2px);
}

/* --- Section Defaults --- */
section {
    padding: 6rem 0;
}

.section-label {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: .6rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    max-width: 550px;
    margin: 0 auto 3rem;
}

/* --- Hero --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, .08), transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 6s ease-in-out infinite;
}

@keyframes pulse-bg {

    0%,
    100% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
}

.hero-headline .accent {
    color: var(--accent);
}

.hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap img {
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), transparent 50%);
    z-index: -1;
    opacity: .4;
}

/* --- Process Cards --- */
.process-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 169, 110, .1);
}

.process-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: rgba(201, 169, 110, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all .3s;
}

.process-card:hover .icon-wrap {
    background: var(--accent);
    color: #000;
}

.process-card h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .8rem;
}

.process-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .03);
}

/* --- Feature Zigzag --- */
.feature-block {
    margin-bottom: 5rem;
}

.feature-block .feature-text h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -.5px;
}

.feature-block .feature-text p {
    color: var(--muted);
    line-height: 1.8;
    font-size: .95rem;
}

.feature-block img {
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.feature-block .feature-text .highlight-quote {
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    margin-top: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

/* --- Timeline Simulation --- */
.timeline-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.timeline-track {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.timeline-block {
    background: #111829;
    border: 1px solid #1E2A45;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    min-width: 200px;
    position: relative;
    transition: all .3s;
}

.timeline-block:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(201, 169, 110, .1);
}

.timeline-block .block-label {
    font-size: .7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .4rem;
}

.timeline-block .block-title {
    font-weight: 600;
    font-size: .95rem;
}

.timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    color: var(--muted);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-connector .line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: .4rem;
}

@media (max-width: 768px) {
    .timeline-track {
        flex-direction: column;
        gap: 0;
    }

    .timeline-connector {
        padding: .8rem 0;
        transform: rotate(90deg);
    }
}

.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 169, 110, .1);
    border: 1px solid rgba(201, 169, 110, .3);
    border-radius: 50px;
    padding: .5rem 1.2rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 1.5rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

.pulse-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 110, .2);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(201, 169, 110, 0);
    }
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* --- Pricing --- */
.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(201, 169, 110, .1);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--accent);
    color: #000;
    font-size: .65rem;
    font-weight: 800;
    padding: .3rem 2.5rem;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card .plan-name {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: .5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: .5rem 0;
    color: var(--muted);
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.pricing-card ul li i {
    color: var(--accent);
    font-size: .75rem;
}

.pricing-card .btn {
    width: 100%;
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    color: var(--muted);
    font-size: .85rem;
}

footer a {
    color: var(--muted);
    text-decoration: none;
    transition: color .3s;
}

footer a:hover {
    color: var(--accent);
}

.footer-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: .5rem;
}

.footer-brand span {
    font-weight: 300;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .4rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all .3s;
    margin-right: .5rem;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* --- Particle Canvas --- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.position-relative-z {
    position: relative;
    z-index: 2;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

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

/* ============================================================
   PAGE-SPECIFIC: Page Hero Banner (Portfolio, About, Contact)
   ============================================================ */
.page-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, .07), transparent 70%);
    border-radius: 50%;
    transform: translateX(-50%);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.page-hero .lead {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Portfolio Grid --- */
.portfolio-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .4s;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(201, 169, 110, .08);
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .5s;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-card .card-body {
    padding: 1.5rem;
}

.portfolio-card .card-body h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .4rem;
}

.portfolio-card .card-body p {
    color: var(--muted);
    font-size: .85rem;
    margin: 0;
}

.portfolio-tag {
    display: inline-block;
    background: rgba(201, 169, 110, .1);
    color: var(--accent);
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .6rem;
}

/* --- Stats Row --- */
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-card .stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.stat-card .stat-label {
    color: var(--muted);
    font-size: .85rem;
    margin-top: .3rem;
}

/* --- Team Cards --- */
.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all .4s;
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    border: 2px solid var(--border);
}

.team-card h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .2rem;
}

.team-card .role {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .8rem;
}

.team-card p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.6;
}

/* --- Value Props --- */
.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .4s;
}

.value-card:hover {
    border-color: rgba(201, 169, 110, .3);
    transform: translateY(-4px);
}

.value-card .value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 169, 110, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.value-card h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.value-card p {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Contact Form --- */
.contact-form .form-control,
.contact-form .form-select {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 12px;
    padding: .8rem 1.2rem;
    font-size: .9rem;
    transition: border-color .3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, .1);
    background: var(--card);
    color: var(--text);
}

.contact-form .form-control::placeholder {
    color: var(--muted);
}

.contact-form label {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--text);
}

.contact-info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 169, 110, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-card .info-item h6 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.contact-info-card .info-item p {
    color: var(--muted);
    font-size: .85rem;
    margin: 0;
}

/* --- FAQ Accordion --- */
.faq-accordion .accordion-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: .8rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--card);
    color: var(--text);
    font-weight: 600;
    font-size: .95rem;
    box-shadow: none;
    padding: 1.2rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent);
    background: var(--card);
}

.faq-accordion .accordion-button::after {
    filter: invert(1);
}

.faq-accordion .accordion-body {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    padding: 0 1.5rem 1.2rem;
}

/* --- Testimonial --- */
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all .4s;
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 110, .3);
}

.testimonial-card .stars {
    color: var(--accent);
    font-size: .85rem;
    margin-bottom: .8rem;
}

.testimonial-card blockquote {
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.testimonial-card .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .author .name {
    font-weight: 600;
    font-size: .85rem;
}

.testimonial-card .author .title {
    color: var(--muted);
    font-size: .75rem;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, rgba(201, 169, 110, .1), rgba(201, 169, 110, .03));
    border: 1px solid rgba(201, 169, 110, .2);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 2rem;
}