/* =============================================================
   BIG STAR PRODUCTIONS — MAIN STYLESHEET
   Token system: color / type / layout
============================================================= */

:root {
    /* Color */
    --bsp-black: #0D0B08;
    --bsp-black-2: #151109;
    --bsp-black-3: #1D1710;
    --bsp-gold: #D4AF37;
    --bsp-gold-light: #F2CB5C;
    --bsp-amber: #B5651D;
    --bsp-cream: #FFFBF2;
    --bsp-cream-2: #FBF3E1;
    --bsp-white: #FFFFFF;
    --bsp-text-dark: #2A2115;
    --bsp-text-muted: #6E6555;
    --bsp-text-on-dark: #E9E2D2;
    --bsp-text-on-dark-muted: #B4A98F;
    --bsp-border-light: #EBE2CC;

    /* Type */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --section-padding: 6rem;
    --radius-md: 10px;
    --radius-lg: 18px;
    --shadow-soft: 0 10px 30px rgba(13, 11, 8, 0.08);
    --shadow-strong: 0 20px 45px rgba(13, 11, 8, 0.35);
}

/* =============================================================
   BASE
============================================================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--bsp-text-dark);
    background-color: var(--bsp-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; transition: color .25s ease; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0;
}

p { margin: 0; }

.text-gold { color: var(--bsp-gold-light); }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--bsp-gold);
    color: var(--bsp-black);
    padding: .75rem 1.25rem;
    z-index: 2000;
    font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
    outline: 3px solid var(--bsp-gold);
    outline-offset: 2px;
}

.section { padding: var(--section-padding) 0; }

@media (max-width: 767.98px) {
    :root { --section-padding: 3.5rem; }
}

/* Section heading blocks */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bsp-amber);
    margin-bottom: .9rem;
    position: relative;
    padding-left: 1.4rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--bsp-gold);
}
.section-label i { color: var(--bsp-gold); font-size: .7rem; }
.section-label--center { padding-left: 0; }
.section-label--center::before { display: none; }
.section-label--light { color: var(--bsp-gold-light); }

.section-heading {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    color: var(--bsp-text-dark);
    margin-bottom: 1.1rem;
}

.section-heading-wrap { max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }

.section-text {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--bsp-text-muted);
    margin-bottom: 1.1rem;
}
.section-text--center { margin-left: auto; margin-right: auto; }

/* =============================================================
   BUTTONS
============================================================= */
.btn {
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 999px;
    padding: .7rem 1.6rem;
    letter-spacing: .01em;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
    border: 2px solid transparent;
}
.btn-lg { padding: .95rem 2.1rem; font-size: 1rem; }

.btn-gold {
    background: linear-gradient(135deg, var(--bsp-gold-light), var(--bsp-gold));
    color: var(--bsp-black);
    border-color: var(--bsp-gold);
}
.btn-gold:hover {
    color: var(--bsp-black);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, .35);
}

.btn-outline-light {
    color: var(--bsp-white);
    border-color: rgba(255,255,255,.55);
    background: transparent;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--bsp-white);
    color: var(--bsp-white);
    transform: translateY(-2px);
}

.btn-dark-outline {
    color: var(--bsp-text-dark);
    border-color: var(--bsp-black);
    background: transparent;
}
.btn-dark-outline:hover {
    background: var(--bsp-black);
    color: var(--bsp-gold-light);
    transform: translateY(-2px);
}

/* =============================================================
   HEADER
============================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(13, 11, 8, 0.35);
    backdrop-filter: blur(6px);
    transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
    padding: .35rem 0;
}
.site-header.is-scrolled {
    background: rgba(13, 11, 8, 0.92);
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
    padding: 0;
}

.navbar-brand { display: flex; align-items: center; padding: .4rem 0; }
.brand-logo { height: 60px; width: auto; display: block; }

.brand-fallback { display: inline-flex; align-items: center; gap: .5rem; }
.brand-fallback__star {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bsp-gold-light), var(--bsp-gold));
    color: var(--bsp-black);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .85rem;
}
.brand-fallback__text {
    font-family: var(--font-display);
    color: var(--bsp-white);
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: .04em;
}
.brand-fallback__text small {
    display: block;
    font-family: var(--font-body);
    font-size: .55rem;
    letter-spacing: .25em;
    color: var(--bsp-gold-light);
    font-weight: 700;
}

.nav-link {
    color: var(--bsp-text-on-dark) !important;
    font-weight: 600;
    font-size: .92rem;
    padding: .55rem .9rem !important;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .25rem;
    height: 2px;
    background: var(--bsp-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--bsp-gold-light) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border-color: rgba(255,255,255,.4); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(212,175,55,.35); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(242, 203, 92, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    #mainNav {
        background: var(--bsp-black-2);
        border-radius: var(--radius-md);
        margin-top: .75rem;
        padding: .5rem 1rem 1rem;
    }
    .nav-link::after { display: none; }
}

/* =============================================================
   HERO SLIDER
============================================================= */
.hero-slider { position: relative; }

.hero-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,11,8,.75) 0%, rgba(13,11,8,.55) 45%, rgba(13,11,8,.92) 100%);
    z-index: 1;
}

.hero-sweep {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(100deg, transparent 40%, rgba(212,175,55,.16) 50%, transparent 60%);
    transform: rotate(8deg);
    z-index: 1;
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 8rem 0 4rem; }

.hero-eyebrow {
    display: inline-block;
    color: var(--bsp-gold-light);
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(242,203,92,.4);
    padding: .4rem 1rem;
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    color: var(--bsp-white);
    margin-bottom: 1.4rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--bsp-text-on-dark);
    max-width: 560px;
    margin-bottom: 2.1rem;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-nav-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.4);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--bsp-white);
    transition: background-color .25s ease, border-color .25s ease;
}
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: 1; z-index: 3; }
.carousel-control-prev:hover .hero-nav-icon,
.carousel-control-next:hover .hero-nav-icon {
    background: var(--bsp-gold);
    border-color: var(--bsp-gold);
    color: var(--bsp-black);
}

.carousel-indicators { z-index: 3; margin-bottom: 2.5rem; }
.carousel-indicators [data-bs-target] {
    width: 10px; height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.5);
    border: none;
    opacity: 1;
}
.carousel-indicators .active { background-color: var(--bsp-gold); width: 26px; border-radius: 6px; }

@media (max-width: 767.98px) {
    .hero-slide { min-height: 92vh; }
    .hero-content { padding: 7rem 0 3rem; text-align: left; }
    .carousel-control-prev, .carousel-control-next { display: none; }
}

/* =============================================================
   COMPANY INTRODUCTION
============================================================= */
.intro-section { background: var(--bsp-cream); }

.intro-media { position: relative; }
.intro-media__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
    aspect-ratio: 4/3.2;
    object-fit: cover;
}
.intro-media__badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1rem;
    background: var(--bsp-black);
    color: var(--bsp-white);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    box-shadow: var(--shadow-strong);
    max-width: 190px;
    border: 1px solid rgba(212,175,55,.35);
}
.intro-media__badge-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--bsp-gold-light);
    display: block;
    line-height: 1;
}
.intro-media__badge-label { font-size: .78rem; color: var(--bsp-text-on-dark-muted); line-height: 1.4; }

@media (max-width: 575.98px) {
    .intro-media__badge { position: static; margin-top: 1.25rem; max-width: none; display: flex; align-items: center; gap: 1rem; }
}

/* =============================================================
   SERVICES
============================================================= */
.services-section { background: var(--bsp-white); }

.service-card {
    background: var(--bsp-white);
    border: 1px solid var(--bsp-border-light);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: var(--bsp-gold);
}
.service-card__icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bsp-black-2), var(--bsp-black));
    color: var(--bsp-gold-light);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
    transition: transform .3s ease;
}
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.05); }
.service-card__title { font-size: 1.25rem; margin-bottom: .7rem; color: var(--bsp-text-dark); }
.service-card__desc { color: var(--bsp-text-muted); font-size: .95rem; line-height: 1.65; margin-bottom: 1.2rem; }
.service-card__link { font-weight: 700; font-size: .88rem; color: var(--bsp-amber); display: inline-flex; align-items: center; gap: .4rem; }
.service-card__link i { transition: transform .25s ease; }
.service-card__link:hover { color: var(--bsp-gold); }
.service-card__link:hover i { transform: translateX(4px); }

/* =============================================================
   PROJECTS
============================================================= */
.projects-section { background: var(--bsp-cream-2); }

.project-card {
    background: var(--bsp-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }

.project-card__media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-card__media img { transform: scale(1.08); }

.project-card__category {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(212,175,55,.95);
    color: var(--bsp-black);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .35rem .8rem;
    border-radius: 999px;
}

.project-card__body { padding: 1.6rem; }
.project-card__title { font-size: 1.2rem; margin-bottom: .55rem; color: var(--bsp-text-dark); }
.project-card__desc { color: var(--bsp-text-muted); font-size: .92rem; margin-bottom: 1.1rem; line-height: 1.6; }
.project-card__link { font-weight: 700; font-size: .85rem; color: var(--bsp-amber); display: inline-flex; align-items: center; gap: .4rem; }
.project-card__link:hover { color: var(--bsp-gold); }
.project-card__link i { transition: transform .25s ease; }
.project-card__link:hover i { transform: translateX(4px); }

/* =============================================================
   STATISTICS
============================================================= */
.stats-section {
    background: var(--bsp-black);
    position: relative;
    overflow: hidden;
}
.hero-sweep--stats { top: -100%; left: -10%; width: 40%; height: 300%; }

.stat-card { position: relative; z-index: 2; }
.stat-card__number {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--bsp-gold-light);
    line-height: 1;
}
.stat-card__suffix { color: var(--bsp-gold); }
.stat-card__label {
    margin-top: .6rem;
    color: var(--bsp-text-on-dark-muted);
    font-size: .92rem;
    letter-spacing: .03em;
}

/* =============================================================
   WHY CHOOSE US
============================================================= */
.why-section { background: var(--bsp-white); }

.why-card {
    background: var(--bsp-cream);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    height: 100%;
    border-left: 3px solid var(--bsp-gold);
    transition: background-color .3s ease, transform .3s ease;
}
.why-card:hover { background: var(--bsp-cream-2); transform: translateY(-4px); }
.why-card__icon { color: var(--bsp-amber); font-size: 1.4rem; margin-bottom: .7rem; }
.why-card__title { font-size: 1.02rem; margin-bottom: .5rem; color: var(--bsp-text-dark); }
.why-card__desc { font-size: .88rem; color: var(--bsp-text-muted); line-height: 1.6; }

/* =============================================================
   TESTIMONIALS
============================================================= */
.testimonials-section { background: var(--bsp-cream); }

.testimonial-carousel { max-width: 760px; margin: 0 auto; }

.testimonial-card {
    background: var(--bsp-white);
    border-radius: var(--radius-lg);
    padding: 2.6rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    max-width: 640px;
}
.testimonial-card__stars { color: var(--bsp-gold); margin-bottom: 1.1rem; font-size: 1rem; letter-spacing: .15rem; }
.testimonial-card__review {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--bsp-text-dark);
    margin-bottom: 1.6rem;
    font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; justify-content: center; gap: .9rem; }
.testimonial-card__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bsp-gold-light), var(--bsp-gold));
    color: var(--bsp-black);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-family: var(--font-display);
}
.testimonial-card__name { font-family: var(--font-body); font-size: .98rem; font-weight: 800; color: var(--bsp-text-dark); margin: 0; }
.testimonial-card__company { font-size: .82rem; color: var(--bsp-text-muted); }

.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2rem; }
.testimonial-nav-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--bsp-border-light);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--bsp-text-dark);
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}
.testimonial-controls .carousel-control-prev,
.testimonial-controls .carousel-control-next {
    position: static;
    width: auto;
    opacity: 1;
}
.testimonial-controls .carousel-control-prev:hover .testimonial-nav-icon,
.testimonial-controls .carousel-control-next:hover .testimonial-nav-icon {
    background: var(--bsp-gold);
    border-color: var(--bsp-gold);
    color: var(--bsp-black);
}
.testimonial-indicators { position: static; margin: 0; }
.testimonial-indicators [data-bs-target] {
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--bsp-border-light);
    border: none;
    opacity: 1;
}
.testimonial-indicators .active { background-color: var(--bsp-gold); width: 22px; border-radius: 5px; }

/* =============================================================
   CALL TO ACTION
============================================================= */
.cta-section {
    background: var(--bsp-black);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero-sweep--cta { top: -80%; left: 30%; width: 45%; height: 260%; }

.cta-heading {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: var(--bsp-white);
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 2;
}
.cta-text {
    color: var(--bsp-text-on-dark-muted);
    max-width: 560px;
    margin: 0 auto 2.2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* =============================================================
   FOOTER
============================================================= */
.site-footer { background: var(--bsp-black-2); color: var(--bsp-text-on-dark-muted); }

.footer-cta { background: var(--bsp-black-3); padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-cta__label { color: var(--bsp-gold-light); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.footer-cta__heading { font-family: var(--font-display); color: var(--bsp-white); font-size: 1.5rem; }

.newsletter-form .form-control {
    background: var(--bsp-black-2);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--bsp-white);
    padding: .7rem 1rem;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form .form-control:focus { box-shadow: none; border-color: var(--bsp-gold); }

.footer-main { padding: 3.5rem 0 2.5rem; }
.footer-brand__logo { height: 60px; }
.footer-about { font-size: .9rem; line-height: 1.75; margin-bottom: 1.3rem; }

.social-icons { display: flex; gap: .6rem; }
.social-icons a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--bsp-text-on-dark);
    transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.social-icons a:hover { background: var(--bsp-gold); border-color: var(--bsp-gold); color: var(--bsp-black); transform: translateY(-3px); }

.footer-heading {
    color: var(--bsp-white);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1.3rem;
}

.footer-links, .footer-legal { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a { font-size: .92rem; color: var(--bsp-text-on-dark-muted); }
.footer-links a:hover { color: var(--bsp-gold-light); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: 1rem; font-size: .9rem; align-items: flex-start; }
.footer-contact i { color: var(--bsp-gold); margin-top: .2rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.3rem 0;
    font-size: .84rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--bsp-gold-light); }

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--bsp-gold);
    color: var(--bsp-black);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
    z-index: 1040;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--bsp-gold-light); }

/* =============================================================
   RESPONSIVE FIXES
============================================================= */
@media (max-width: 575.98px) {
    .hero-actions .btn, .cta-actions .btn { width: 100%; text-align: center; }
    .testimonial-card { padding: 1.8rem 1.4rem; }
    .footer-legal { flex-direction: column; gap: .4rem; }
}
