/* =========================================================
   PINNACLE ROCK STUDIOS
   Main Website Styles
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   2. BRAND VARIABLES
   ========================================================= */

:root {
    --black: #080808;
    --dark: #101010;
    --white: #ffffff;

    --orange: #ff6b00;
    --orange-light: #ff8124;

    --blue: #0757c9;
    --blue-dark: #06439c;

    --light: #f5f6f8;
    --grey: #707070;
    --border: #e5e5e5;

    --max-width: 1240px;

    --radius: 18px;
}


/* =========================================================
   3. GLOBAL UTILITIES
   ========================================================= */

.section {
    width: min(var(--max-width), 92%);
    margin: 0 auto;
    padding: 110px 0;
}

.section-label {
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
}

.section-heading h2 span {
    color: var(--orange);
}

.section-heading > p:last-child {
    color: var(--grey);
    max-width: 650px;
    margin: 0 auto;
}


/* =========================================================
   4. BUTTONS
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 10px;

    font-size: 0.9rem;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button.primary {
    background: var(--orange);
    color: white;
    border: 1px solid var(--orange);
}

.button.primary:hover {
    background: var(--orange-light);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.25);
}

.button.secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}


/* =========================================================
   5. NAVIGATION
   ========================================================= */

.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);

    width: min(1200px, calc(100% - 30px));

    height: 68px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 14px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);

    z-index: 1000;

    backdrop-filter: blur(15px);
}

.brand img {
    width: 65px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;

    font-size: 0.82rem;
    font-weight: 600;

    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    padding: 0 20px;

    border-radius: 10px;

    background: var(--orange);
    color: white;

    font-size: 0.8rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.nav-button:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
}

.menu-button {
    display: none;

    border: none;
    background: transparent;

    font-size: 1.5rem;
    cursor: pointer;
}


/* =========================================================
   6. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 760px;

    padding: 180px 8% 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.87) 45%,
            rgba(0, 0, 0, 0.55) 100%
        ),
        url("assets/hero.jpg") center / cover no-repeat;

    color: white;
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    bottom: -350px;

    border-radius: 50%;

    border: 1px solid rgba(255, 107, 0, 0.25);

    box-shadow:
        0 0 0 70px rgba(7, 87, 201, 0.05),
        0 0 0 140px rgba(255, 107, 0, 0.04);

    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 50%,
            rgba(7, 87, 201, 0.06)
        );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 670px;
}

.eyebrow {
    color: var(--orange);

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 0.2em;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(4rem, 8vw, 8rem);

    line-height: 0.88;

    letter-spacing: -0.07em;

    font-weight: 800;

    margin-bottom: 35px;
}

.hero h1 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 1rem;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-brand {
    position: relative;
    z-index: 2;

    width: 290px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    margin-right: 5%;
}

.hero-brand img {
    width: 230px;

    filter:
        drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
}

.hero-brand p {
    margin-top: 15px;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.3em;

    color: white;
}

.hero-brand p span {
    color: var(--orange);
}


/* =========================================================
   7. ABOUT
   ========================================================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    position: relative;

    max-width: 540px;
}

.about-image::before {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    top: -20px;
    left: -20px;

    border-top: 5px solid var(--orange);
    border-left: 5px solid var(--blue);

    z-index: -1;
}

.about-image img {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 18px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.founder-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 18px 22px;

    background: rgba(8, 8, 8, 0.93);

    color: white;

    border-left: 4px solid var(--orange);

    border-radius: 8px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.founder-card strong {
    display: block;

    font-size: 1rem;

    margin-bottom: 3px;
}

.founder-card span {
    display: block;

    color: var(--orange);

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 0.12em;
}

.about-content h2 {
    max-width: 650px;

    font-size: clamp(2.5rem, 5vw, 4.4rem);

    line-height: 1;

    letter-spacing: -0.055em;

    margin-bottom: 30px;
}

.about-content h2 span {
    display: block;

    color: var(--orange);
}

.about-content > p:not(.section-label) {
    color: #555;

    margin-bottom: 18px;

    max-width: 620px;
}

.quote {
    margin-top: 35px;

    padding: 25px 30px;

    background: var(--light);

    border-left: 4px solid var(--orange);

    border-radius: 0 12px 12px 0;
}

.quote-mark {
    display: block;

    color: var(--blue);

    font-size: 3rem;

    font-weight: 800;

    line-height: 0.7;
}

.quote p {
    margin: 12px 0 5px;

    font-size: 1.05rem;

    font-weight: 700;
}

.quote small {
    color: var(--grey);

    font-size: 0.8rem;
}


/* =========================================================
   8. SERVICES
   ========================================================= */

.services {
    background: var(--light);

    max-width: none;
    width: 100%;

    padding-left: 4%;
    padding-right: 4%;
}

.services-grid {
    width: min(1240px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.service-card {
    position: relative;

    background: white;

    padding: 28px;

    min-height: 300px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        var(--orange),
        var(--blue)
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(7, 87, 201, 0.25);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    color: var(--blue);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.1em;

    margin-bottom: 35px;
}

.service-card h3 {
    font-size: 1.15rem;

    line-height: 1.2;

    margin-bottom: 12px;
}

.service-card p {
    color: var(--grey);

    font-size: 0.82rem;

    line-height: 1.6;

    margin-bottom: 18px;
}

.service-card strong {
    color: var(--orange);

    font-size: 1.15rem;

    margin-top: auto;

    margin-bottom: 18px;
}

.service-button {
    width: 100%;

    min-height: 42px;

    border: none;

    border-radius: 8px;

    background: var(--blue);

    color: white;

    font-size: 0.75rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.service-button:hover {
    background: var(--blue-dark);

    transform: translateY(-2px);
}


/* =========================================================
   9. WHY US
   ========================================================= */

.why-us {
    background: var(--black);

    color: white;

    max-width: none;

    width: 100%;

    padding-left: 8%;
    padding-right: 8%;
}

.why-us .section-heading {
    text-align: left;

    margin-left: 0;
}

.why-us .section-heading h2 span {
    color: var(--orange);
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 40px;

    max-width: 1240px;

    margin: auto;
}

.why-grid > div {
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.why-grid span {
    color: var(--orange);

    font-size: 0.75rem;

    font-weight: 800;
}

.why-grid h3 {
    margin: 25px 0 12px;

    font-size: 1rem;
}

.why-grid p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 0.8rem;

    line-height: 1.7;
}


/* =========================================================
   10. CTA
   ========================================================= */

.cta {
    position: relative;

    padding: 100px 8%;

    background:
        linear-gradient(
            110deg,
            var(--blue),
            #0647a8
        );

    color: white;

    overflow: hidden;
}

.cta::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 0 0 80px rgba(255, 255, 255, 0.03),
        0 0 0 160px rgba(255, 255, 255, 0.02);
}

.cta > div {
    width: min(1000px, 100%);

    margin: auto;

    position: relative;
    z-index: 2;
}

.cta h2 {
    max-width: 800px;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1;

    letter-spacing: -0.05em;

    margin-bottom: 20px;
}

.cta h2 span {
    display: block;

    color: white;
}

.cta p:not(.section-label) {
    color: rgba(255, 255, 255, 0.75);

    margin-bottom: 30px;

    max-width: 600px;
}


/* =========================================================
   11. CONTACT
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 80px;

    align-items: start;
}

.contact-info {
    padding-top: 15px;
}

.contact-info h3 {
    font-size: 1.5rem;

    margin-bottom: 5px;
}

.contact-info > p {
    color: var(--orange);

    font-weight: 600;

    margin-bottom: 30px;
}

.contact-info a {
    display: block;

    color: #444;

    margin-bottom: 15px;

    font-size: 0.9rem;

    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--orange);
}

.project-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    padding: 35px;

    background: var(--light);

    border-radius: 18px;
}

.project-form label {
    display: flex;
    flex-direction: column;

    gap: 8px;

    color: #222;

    font-size: 0.78rem;

    font-weight: 700;
}

.project-form label:nth-of-type(6),
.project-form label:nth-of-type(7),
.project-form button,
#formMessage {
    grid-column: 1 / -1;
}

.project-form input,
.project-form textarea,
.project-form select {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #ddd;

    border-radius: 8px;

    background: white;

    color: #111;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.project-form textarea {
    resize: vertical;
}

.project-form input:focus,
.project-form textarea:focus,
.project-form select:focus {
    border-color: var(--blue);

    box-shadow: 0 0 0 3px rgba(7, 87, 201, 0.08);
}

#formMessage {
    color: var(--blue);

    font-size: 0.85rem;

    font-weight: 600;
}


/* =========================================================
   12. FOOTER
   ========================================================= */

footer {
    background: #050505;

    color: white;

    padding: 60px 7% 25px;

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1.3fr;

    gap: 50px;
}

.footer-brand img {
    width: 120px;

    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--orange);

    font-size: 0.8rem;

    font-weight: 700;
}

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.78rem;

    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);
}

.copyright {
    grid-column: 1 / -1;

    padding-top: 25px;

    margin-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.35);

    text-align: center;

    font-size: 0.7rem;
}


/* =========================================================
   13. MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 950px) {

    .nav-links {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        padding: 25px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        background: white;

        border-radius: 14px;

        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-button {
        display: block;
    }

    .nav-button {
        display: none;
    }

    .hero {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding-top: 160px;

        min-height: 850px;
    }

    .hero-brand {
        margin: 60px 0 0;

        align-self: center;

        width: 230px;
    }

    .hero-brand img {
        width: 180px;
    }

    .about {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        margin: auto;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    footer {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   14. SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 80px 0;
    }

    .navbar {
        height: 62px;

        top: 10px;

        width: calc(100% - 20px);
    }

    .brand img {
        width: 55px;
    }

    .hero {
        padding:
            140px 7%
            80px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 17vw, 5rem);
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-brand {
        margin-top: 50px;
    }

    .about-content h2 {
        font-size: 2.7rem;
    }

    .founder-card {
        left: 15px;
        bottom: 15px;
    }

    .services {
        padding-left: 5%;
        padding-right: 5%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 270px;
    }

    .why-us {
        padding-left: 7%;
        padding-right: 7%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding:
            80px 7%;
    }

    .project-form {
        grid-template-columns: 1fr;

        padding: 25px;
    }

    .project-form label:nth-of-type(6),
    .project-form label:nth-of-type(7),
    .project-form button,
    #formMessage {
        grid-column: auto;
    }

    footer {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-left: 7%;
        padding-right: 7%;
    }

    .copyright {
        grid-column: auto;
    }
}


/* =========================================================
   15. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;
    }
}/* =========================================================
   PINNACLE ROCK STUDIOS
   PREMIUM ANIMATIONS
   ========================================================= */


/* =========================================================
   1. HERO ENTRANCE
   ========================================================= */

.hero-content {
    animation: heroContentIn 1s ease-out both;
}

.hero-brand {
    animation: heroBrandIn 1.2s ease-out 0.25s both;
}


@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes heroBrandIn {

    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   2. HERO HEADLINE
   ========================================================= */

.hero h1 {
    animation: headlineIn 1s ease-out 0.15s both;
}


@keyframes headlineIn {

    from {
        opacity: 0;
        transform: translateY(25px);
        letter-spacing: -0.02em;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.07em;
    }

}


/* =========================================================
   3. HERO BUTTONS
   ========================================================= */

.hero-buttons {
    animation: buttonsIn 0.8s ease-out 0.55s both;
}


@keyframes buttonsIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   4. NAVBAR
   ========================================================= */

.navbar {
    animation: navbarIn 0.7s ease-out both;
}


@keyframes navbarIn {

    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }

}


/* =========================================================
   5. SECTION REVEALS
   ========================================================= */

.about-image,
.about-content,
.service-card,
.why-grid > div {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.about-image.reveal-visible,
.about-content.reveal-visible,
.service-card.reveal-visible,
.why-grid > div.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   6. SERVICE CARD STAGGER
   ========================================================= */

.service-card:nth-child(1) {
    transition-delay: 0.05s;
}

.service-card:nth-child(2) {
    transition-delay: 0.10s;
}

.service-card:nth-child(3) {
    transition-delay: 0.15s;
}

.service-card:nth-child(4) {
    transition-delay: 0.20s;
}

.service-card:nth-child(5) {
    transition-delay: 0.25s;
}

.service-card:nth-child(6) {
    transition-delay: 0.30s;
}

.service-card:nth-child(7) {
    transition-delay: 0.35s;
}

.service-card:nth-child(8) {
    transition-delay: 0.40s;
}

.service-card:nth-child(9) {
    transition-delay: 0.45s;
}

.service-card:nth-child(10) {
    transition-delay: 0.50s;
}

.service-card:nth-child(11) {
    transition-delay: 0.55s;
}


/* =========================================================
   7. FOUNDER IMAGE
   ========================================================= */

.about-image {
    overflow: visible;
}

.about-image img {
    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.015);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   8. FOUNDER CARD
   ========================================================= */

.founder-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-image:hover .founder-card {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   9. SERVICE CARDS
   ========================================================= */

.service-card {
    transition:
        opacity 0.7s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}


/* =========================================================
   10. SERVICE NUMBER
   ========================================================= */

.service-number {
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.service-card:hover .service-number {
    transform: translateX(5px);

    color: var(--orange);
}


/* =========================================================
   11. WHY-US ANIMATION
   ========================================================= */

.why-grid > div {
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        border-color 0.3s ease;
}

.why-grid > div:hover {
    transform: translateY(-6px);

    border-color: var(--orange);
}


/* =========================================================
   12. CTA
   ========================================================= */

.cta {
    overflow: hidden;
}

.cta::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -200px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);

    animation:
        ctaFloat 8s ease-in-out infinite;
}


@keyframes ctaFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }

}


/* =========================================================
   13. HERO BACKGROUND MOVEMENT
   ========================================================= */

.hero::before {
    animation:
        heroOrbit 12s ease-in-out infinite;
}


@keyframes heroOrbit {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -15px);
    }

}


/* =========================================================
   14. BUTTON MICRO-INTERACTION
   ========================================================= */

.button span {
    display: inline-block;

    transition:
        transform 0.25s ease;
}

.button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   15. LINK MICRO-INTERACTION
   ========================================================= */

.footer-links a,
.footer-contact a,
.contact-info a {
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.contact-info a:hover {
    transform: translateX(4px);
}


/* =========================================================
   16. MOBILE ANIMATION ADJUSTMENTS
   ========================================================= */

@media (max-width: 600px) {

    .hero-brand {
        animation:
            heroContentIn 1s ease-out 0.25s both;
    }

    .service-card:hover {
        transform: translateY(-4px);
    }

}


/* =========================================================
   17. ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;

        transition:
            none !important;

        scroll-behavior: auto !important;
    }

}/* =========================================================
   PINNACLE ROCK STUDIOS
   CINEMATIC INTRO
   ========================================================= */

.intro-screen {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #080808;

    color: white;

    overflow: hidden;
}


/* -------------------------
   INTRO CONTENT
   ------------------------- */

.intro-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    position: relative;

    z-index: 2;
}


/* -------------------------
   MOUNTAIN MARK
   ------------------------- */

.intro-mark {
    width: 100px;

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    opacity: 0;

    transform: translateY(20px) scale(0.85);

    animation:
        introMarkIn 0.9s ease-out 0.2s forwards;
}

.intro-mark img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 10px 25px rgba(0, 0, 0, 0.4)
        );
}


@keyframes introMarkIn {

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* -------------------------
   ORANGE LINE
   ------------------------- */

.intro-line {
    width: 0;

    height: 2px;

    background: var(--orange);

    margin-bottom: 25px;

    animation:
        introLineIn 0.7s ease-out 0.75s forwards;
}


@keyframes introLineIn {

    to {
        width: 75px;
    }

}


/* -------------------------
   COMPANY NAME
   ------------------------- */

.intro-content h2 {
    margin: 0;

    font-size:
        clamp(1.8rem, 5vw, 3.5rem);

    line-height: 1;

    letter-spacing: 0.16em;

    font-weight: 800;

    opacity: 0;

    transform: translateY(15px);

    animation:
        introTextIn 0.7s ease-out 1s forwards;
}


.intro-content p {
    margin: 10px 0 0;

    color: var(--orange);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.45em;

    opacity: 0;

    transform: translateY(10px);

    animation:
        introTextIn 0.7s ease-out 1.15s forwards;
}


.intro-content > span {
    margin-top: 35px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 0.65rem;

    letter-spacing: 0.3em;

    font-weight: 600;

    opacity: 0;

    animation:
        introTaglineIn 0.7s ease-out 1.45s forwards;
}


@keyframes introTextIn {

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


@keyframes introTaglineIn {

    to {
        opacity: 1;
    }

}


/* -------------------------
   SCREEN EXIT
   ------------------------- */

.intro-screen.intro-exit {
    animation:
        introExit 0.9s
        cubic-bezier(0.76, 0, 0.24, 1)
        forwards;
}


@keyframes introExit {

    0% {
        opacity: 1;

        transform: translateY(0);
    }

    100% {
        opacity: 0;

        transform: translateY(-100%);
    }

}


/* -------------------------
   MOBILE
   ------------------------- */

@media (max-width: 600px) {

    .intro-mark {
        width: 75px;

        height: 75px;
    }

    .intro-content h2 {
        font-size: 1.65rem;

        letter-spacing: 0.12em;
    }

    .intro-content p {
        font-size: 0.65rem;

        letter-spacing: 0.35em;
    }

    .intro-content > span {
        font-size: 0.55rem;

        letter-spacing: 0.2em;
    }

}


/* =========================================================
   PINNACLE ROCK STUDIOS
   CLEAN FIX PATCH — MULTI-SERVICE QUOTE + INTERACTIONS
   ========================================================= */

/* ---------- MULTI-SERVICE QUOTE ---------- */

.service-selection {
    grid-column: 1 / -1;
}

.service-selection-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    color: #222;
    font-size: 0.78rem;
    font-weight: 700;
}

.service-selection-label span {
    color: var(--grey);
    font-size: 0.7rem;
    font-weight: 500;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.service-option {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: #222;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.service-option:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 87, 201, 0.45);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.service-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option span {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-size: 0.78rem;
    font-weight: 600;
}

.service-option span::before {
    content: "";
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    border: 2px solid #cfcfcf;
    border-radius: 5px;
    background: #fff;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.service-option:has(input:checked) {
    border-color: var(--blue);
    background: rgba(7, 87, 201, 0.045);
    box-shadow: 0 8px 24px rgba(7, 87, 201, 0.08);
}

.service-option:has(input:checked) span::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    transform: scale(1.03);
}

/* ---------- FORM MESSAGE ---------- */

#formMessage {
    color: #222;
    line-height: 1.6;
}

#formMessage a {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#formMessage a:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

/* ---------- SCROLL PROGRESS ---------- */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    z-index: 10001;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.45);
    pointer-events: none;
}

/* ---------- CURSOR SPOTLIGHT ---------- */

.cursor-glow {
    position: fixed;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    background: radial-gradient(
        circle,
        rgba(255, 107, 0, 0.10) 0%,
        rgba(255, 107, 0, 0.035) 35%,
        transparent 70%
    );
    mix-blend-mode: screen;
}

/* ---------- MAGNETIC BUTTONS ---------- */

.button {
    will-change: transform;
}

.button span {
    display: inline-block;
    transition: transform 0.25s ease;
}

.button:hover span {
    transform: translateX(5px);
}

/* ---------- HEADING REVEALS ---------- */

.section-heading {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.section-heading.heading-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- SERVICE CARD 3D ---------- */

.service-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,0.13),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

/* ---------- MOBILE ---------- */

@media (max-width: 600px) {
    .service-options {
        grid-template-columns: 1fr;
    }

    .service-selection-label {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 800px) {
    .cursor-glow {
        display: none;
    }
}

/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {
    .cursor-glow,
    .scroll-progress {
        display: none;
    }
}

.selected-service-list {
    margin: 8px 0 16px 18px;
}

.selected-service-list li {
    margin: 2px 0;
}
