/* ==========================================
   PRODUCTION PAGE - PREMIUM CINEMATIC
========================================== */

:root {
    --prod-gold: #d4af37;
    --prod-gold-light: #f3d37a;
    --prod-black: #050505;
    --prod-dark: #0b0b0b;
    --prod-card: #111;
    --prod-text: #f7f7f7;
    --prod-muted: #b8b8b8;
}

/* INTRO */
.prod-page-intro {
    padding-top: 190px !important;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 0%, rgba(212,175,55,.13), transparent 32%),
        radial-gradient(circle at 10% 25%, rgba(212,175,55,.06), transparent 28%),
        linear-gradient(180deg, #050505, #090909);
    color: #fff;
}

.prod-page-intro::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: rgba(212,175,55,.08);
    filter: blur(20px);
}

.prod-page-intro .container {
    position: relative;
    z-index: 2;
}

.prod-intro-box {
    display: grid;
    grid-template-columns: 1.3fr .75fr;
    gap: 45px;
    align-items: center;
    padding: 60px;
    margin-bottom: 70px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
        radial-gradient(circle at top right, rgba(212,175,55,.16), transparent 38%);
    border: 1px solid rgba(212,175,55,.22);
    box-shadow: 0 28px 90px rgba(0,0,0,.45);
}

.prod-intro-left span,
.prod-section-heading span {
    display: inline-block;
    color: var(--prod-gold-light);
    text-transform: uppercase;
    letter-spacing: 2.6px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.prod-intro-left h1 {
    color: #fff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.06;
    font-weight: 900;
    margin: 12px 0 22px;
}

.prod-intro-left h1 em {
    color: var(--prod-gold-light);
    font-style: normal;
}

.prod-intro-left p {
    color: #d7d7d7;
    font-size: 18px;
    line-height: 1.85;
    max-width: 760px;
    margin: 0;
}

.prod-intro-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.prod-intro-right {
    display: grid;
    gap: 18px;
}

.prod-intro-stat {
    padding: 26px 24px;
    border-radius: 22px;
    background: rgba(0,0,0,.38);
    border: 1px solid rgba(212,175,55,.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .35s ease;
}

.prod-intro-stat:hover {
    transform: translateX(-6px);
    border-color: rgba(243,211,122,.55);
}

.prod-intro-stat strong {
    color: var(--prod-gold-light);
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
}

.prod-intro-stat small {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

/* BUTTONS */
.prod-btn-primary,
.prod-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 165px;
    padding: 15px 26px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    transition: .35s ease;
}

.prod-btn-primary {
    background: linear-gradient(135deg, #f5d47d, #c99b2c);
    color: #080808;
    box-shadow: 0 12px 35px rgba(212,175,55,.22);
}

.prod-btn-primary:hover {
    color: #080808;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(212,175,55,.34);
}

.prod-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.04);
}

.prod-btn-outline:hover {
    color: var(--prod-gold-light);
    border-color: var(--prod-gold);
    transform: translateY(-4px);
}

/* SECTION HEADING */
.prod-section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 45px;

}

.prod-section-heading h2 {
    color: #fff;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 16px;
}

.prod-section-heading p {
    color: var(--prod-muted);
    font-size: 17px;
    line-height: 1.8;
}

.prod-heading-line {
    width: 90px;
    height: 1px;
    background: var(--prod-gold);
    margin: 18px auto 20px;
    position: relative;
}

.prod-heading-line::after {
    content: "";
    width: 9px;
    height: 9px;
    border: 1px solid var(--prod-gold);
    background: #050505;
    transform: rotate(45deg);
    position: absolute;
    left: 50%;
    top: -4px;
    margin-left: -4px;
}

/* SERVICES */
.prod-services-section {
    background:
        radial-gradient(circle at 20% 0%, rgba(212,175,55,.13), transparent 28%),
        linear-gradient(180deg, #050505, #090909);
    color: #fff;
}

.prod-services-heading {
    margin-bottom: 55px;
}

.prod-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.prod-service-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #121212, #070707);
    border: 1px solid rgba(212,175,55,.25);
    box-shadow: 0 18px 55px rgba(0,0,0,.35);
    transition: .4s ease;
}

.prod-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(243,211,122,.7);
    box-shadow: 0 25px 70px rgba(212,175,55,.16);
}

.prod-service-img {
    height: 205px;
    overflow: hidden;
}

.prod-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.9) contrast(1.06);
    transition: .55s ease;
}

.prod-service-card:hover .prod-service-img img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1);
}

.prod-service-content {
    position: relative;
    padding: 45px 24px 28px;
    min-height: 235px;
}

.prod-service-icon {
    position: absolute;
    top: -34px;
    left: 22px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.25), #070707 65%);
    border: 1px solid rgba(212,175,55,.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-service-icon i {
    color: var(--prod-gold-light);
    font-size: 26px;
}

.prod-service-content h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 850;
    margin-bottom: 12px;
}

.prod-service-content p {
    color: var(--prod-muted);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 18px;
}

.prod-service-content a {
    color: var(--prod-gold-light);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s ease;
}

.prod-service-content a:hover {
    gap: 14px;
    color: #fff;
}

/* PROCESS */
.prod-process-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(212,175,55,.11), transparent 30%),
        #050505;
}

.prod-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.prod-process-card {
    position: relative;
    text-align: center;
    padding: 10px 18px 0;
}

.prod-process-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 55px;
    right: -28px;
    width: 55px;
    border-top: 1px dashed rgba(212,175,55,.55);
}

.prod-process-icon {
    width: 108px;
    height: 108px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,.65);
    background: radial-gradient(circle, rgba(212,175,55,.16), rgba(0,0,0,.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-process-icon i {
    color: var(--prod-gold-light);
    font-size: 34px;
}

.prod-process-card span {
    display: block;
    color: var(--prod-gold-light);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.prod-process-card h3 {
    color: var(--prod-gold-light);
    font-size: 21px;
    font-weight: 850;
    margin-bottom: 12px;
}

.prod-process-card p {
    color: var(--prod-muted);
    line-height: 1.75;
    font-size: 15px;
    margin: 0;
}

/* WHY */
.prod-why-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #050505, #090909);
}

.prod-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.prod-why-card {
    text-align: center;
    padding: 36px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #111, #070707);
    border: 1px solid rgba(212,175,55,.22);
    transition: .35s ease;
}

.prod-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(243,211,122,.65);
    box-shadow: 0 20px 55px rgba(212,175,55,.12);
}

.prod-why-card i {
    color: var(--prod-gold-light);
    font-size: 38px;
    margin-bottom: 20px;
}

.prod-why-card h3 {
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.prod-why-card p {
    color: var(--prod-muted);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* FINAL CTA */
.prod-final-cta {
    padding: 40px 0 95px;
    background: #050505;
}

.prod-final-box {
    min-height: 310px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.28);
    background:
        linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,.9) 52%, #080808 100%),
        url('../images/pages/production-cta.jpg') left center/cover no-repeat;
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
}

.prod-final-content {
    padding: 55px 45px;
}

.prod-final-content h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 18px;
}

.prod-final-content h2 span {
    color: var(--prod-gold-light);
}

.prod-final-content p {
    color: var(--prod-muted);
    line-height: 1.8;
    margin-bottom: 26px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .prod-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .prod-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .prod-page-intro {
        padding-top: 130px !important;
    }

    .prod-intro-box {
        grid-template-columns: 1fr;
        padding: 38px;
    }

    .prod-intro-stat:hover {
        transform: none;
    }

    .prod-services-grid,
    .prod-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prod-process-card:not(:last-child)::after {
        display: none;
    }

    .prod-final-box {
        grid-template-columns: 1fr;
        background:
            linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.95)),
            url('../images/pages/production-cta.jpg') center center/cover no-repeat;
    }

    .prod-final-box > div:first-child {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .prod-intro-buttons {
        flex-direction: column;
    }

    .prod-btn-primary,
    .prod-btn-outline {
        width: 100%;
    }

    .prod-services-grid,
    .prod-process-grid,
    .prod-why-grid {
        grid-template-columns: 1fr;
    }

    .prod-service-img {
        height: 230px;
    }

    .prod-process-section,
    .prod-why-section {
        padding: 65px 0;
    }

    .prod-final-content {
        padding: 38px 24px;
    }
}

@media (max-width: 575px) {
    .prod-page-intro {
        padding-top: 120px !important;
    }

    .prod-intro-box {
        padding: 28px 22px;
        border-radius: 24px;
        margin-bottom: 55px;
    }

    .prod-intro-left p {
        font-size: 16px;
    }

    .prod-intro-stat {
        display: block;
    }

    .prod-intro-stat strong {
        display: block;
        margin-bottom: 8px;
        font-size: 34px;
    }

    .prod-intro-stat small {
        text-align: left;
    }
}
.prod-final-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    background: #101010;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.prod-final-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #1a1a1a;
}

.prod-final-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.prod-final-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.2) 45%,
            rgba(0, 0, 0, 0.88) 100%
        );
}

.prod-final-visual-content {
    position: absolute;
    right: 35px;
    bottom: 35px;
    left: 35px;
    z-index: 2;
    color: #fff;
}

.prod-final-visual-content span {
    display: block;
    margin-bottom: 10px;
    color: #f3c35b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prod-final-visual-content strong {
    display: block;
    max-width: 420px;
    color: #fff;
    font-size: 25px;
    line-height: 1.35;
}

.prod-final-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 55px;
    background:
        radial-gradient(
            circle at top right,
            rgba(243, 195, 91, 0.14),
            transparent 45%
        ),
        #101010;
}

.prod-final-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #f3c35b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prod-final-content h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 46px;
    line-height: 1.15;
}

.prod-final-content h2 span {
    color: #f3c35b;
}

.prod-final-content p {
    max-width: 520px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.prod-final-content .prod-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    border-radius: 30px;
    background: #f3c35b;
    color: #111 !important;
    font-weight: 700;
    text-decoration: none;
}

.prod-final-content .prod-btn-primary i {
    color: #111 !important;
}

.prod-final-content .prod-btn-primary:hover {
    background: #fff;
    color: #111 !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .prod-final-box {
        grid-template-columns: 1fr;
    }

    .prod-final-visual {
        min-height: 380px;
    }

    .prod-final-visual img {
        min-height: 380px;
    }

    .prod-final-content {
        padding: 45px 35px;
    }
}

@media (max-width: 576px) {
    .prod-final-box {
        border-radius: 20px;
    }

    .prod-final-visual {
        min-height: 300px;
    }

    .prod-final-visual img {
        min-height: 300px;
    }

    .prod-final-visual-content {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .prod-final-visual-content strong {
        font-size: 20px;
    }

    .prod-final-content {
        padding: 35px 24px;
    }

    .prod-final-content h2 {
        font-size: 34px;
    }
}