/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* GLOBAL */
body {
    font-family: 'Inter', sans-serif;
    background: #0b0e13;
    color: #e5e7eb;
}

/* ================= HERO ================= */

body.home .hero {
        position: relative;
    min-height: 100vh;
        background-image: url("../img/main.png");
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(11,14,19,0.65),
        rgba(11,14,19,0.85)
    );
    z-index: 1;
}

/* ================= NAVBAR ================= */

.navbar {
    position: relative;
    background: #0b0e13;
}

body.home .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 3;
}


.nav-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #e5e7eb;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: #c9a24d;
}

/* MENU */

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #c9a24d;
}

.nav-cta {
    padding: 8px 18px;
    border: 1px solid #c9a24d;
    border-radius: 999px;
    color: #c9a24d !important;
}

.nav-cta:hover {
    background: #c9a24d;
    color: #0b0e13 !important;
}

/* HAMBURGER */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #e5e7eb;
    transition: all 0.3s ease;
}

/* ================= HERO CONTENT ================= */

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 40px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #c9a24d;
}

.hero-content p {
    max-width: 650px;
    color: #d1d5db;
    margin-bottom: 45px;
    line-height: 1.7;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.gold {
    background: #c9a24d;
    color: #0b0e13;
}

.btn.outline {
    border: 2px solid #c9a24d;
    color: #c9a24d;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(11,14,19,0.95);
        flex-direction: column;
        gap: 25px;
        padding: 40px 0;
        text-align: center;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }
}
/* ================= PROCESS ================= */

.process {
    padding: 120px 0;
    background: #0f131b;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.process-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    margin-bottom: 20px;
}

.process-header h2 span {
    color: #c9a24d;
}

.process-header p {
    color: #9ca3af;
    line-height: 1.6;
}

/* STEPS */

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-left: 8%;
    padding-right: 8%;
}

.process-step {
    position: relative;
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.15);
    border-radius: 16px;
    padding: 60px 30px 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
}

/* NUMBER */

.step-number {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #c9a24d;
    color: #0b0e13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(201,162,77,0.5);
}

/* TEXT */

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: #9ca3af;
    line-height: 1.5;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-header h2 {
        font-size: 32px;
    }
}
/* ================= HERO SCROLL ================= */

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding-bottom: 60px;
}

.hero-scroll span {
    width: 24px;
    height: 24px;
    border-bottom: 3px solid #c9a24d;
    border-right: 3px solid #c9a24d;
    transform: rotate(45deg);
    opacity: 0;
    animation: scrollChevron 2.2s infinite;
}

/* KASKADA ANIMACJI */

.hero-scroll span:nth-child(1) {
    animation-delay: 0s;
}

.hero-scroll span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-scroll span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ANIMACJA */

@keyframes scrollChevron {
    0% {
        opacity: 0;
        transform: translateY(-6px) rotate(45deg);
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(8px) rotate(45deg);
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .hero-scroll {
        bottom: 20px;
    }

    .hero-scroll span {
        width: 20px;
        height: 20px;
    }
}
/* ================= MOBILE HERO FIX (CENTERED) ================= */

@media (max-width: 768px) {

    .hero {
        min-height: 78vh; /* krótszy hero */
    }

    .hero-content {
        min-height: 78vh; /* ⬅️ NADAL CENTROWANY */
        padding: 90px 18px 50px;
    }

    .hero-content h1 {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}

/* ================= BUTTON HOVERS ================= */

.btn:hover {
    transform: translateY(-2px);
}

/* GOLD BUTTON */

.btn.gold:hover {
    box-shadow: 0 12px 30px rgba(201,162,77,0.45);
}

/* OUTLINE BUTTON */

.btn.outline:hover {
    background: #c9a24d;
    color: #0b0e13;
    box-shadow: 0 12px 30px rgba(201,162,77,0.35);
}
/* ================= SERVICES ================= */

.services {
    padding: 120px 0;
    background: #0b0e13;
}

.services-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px;
}

.services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    margin-bottom: 18px;
}

.services-header h2 span {
    color: #c9a24d;
}

.services-header p {
    color: #9ca3af;
    line-height: 1.6;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.service-card {
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* IMAGE */

.service-image {
    background: #0f131b;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
}

/* CONTENT */

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 14px;
}

.service-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* LINK */

.service-link {
    color: #c9a24d;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.service-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #c9a24d;
    margin: 6px auto 0;
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 40px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-header h2 {
        font-size: 32px;
    }
}
/* ================= SERVICES FEATURED ================= */

.services-featured {
    padding: 8%;
    background: #0f131b;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== FEATURED ===== */

.service-featured {
    position: relative;
    display: block;
    height: 380px;
    border-radius: 24px;
    border: 2px solid #c9a24d;
    background-image: url("../img/foliowaniemain.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 60px;
}

.service-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #c9a24d;
    color: #0b0e13;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    z-index: 3;
    letter-spacing: 0.5px;
}

/* ===== COMMON OVERLAY ===== */

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11,14,19,0.92),
        rgba(11,14,19,0.55),
        rgba(11,14,19,0.25)
    );
    z-index: 1;
}

/* ===== CONTENT ===== */

.service-content {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: 40px;
    color: #e5e7eb;
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.service-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-content p {
    color: #d1d5db;
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-cta {
    font-weight: 600;
    color: #c9a24d;
}

/* ===== ROW SERVICES ===== */

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-box {
    position: relative;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover,
.service-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* BACKGROUNDS */

.image-2 { background-image: url("../img/polerowanie.png"); }
.image-3 { background-image: url("../img/czyszczenie.png"); }
.image-4 { background-image: url("../img/ceramika.png"); }

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .service-featured {
        height: 300px;
        margin-bottom: 40px;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-content {
        padding: 28px;
    }

    .service-content h3 {
        font-size: 24px;
    }
}
/* ================= SERVICES HIGHLIGHT ================= */

.services-highlight {
    padding: 10% 8% 8%;
    background: linear-gradient(
        to bottom,
        #0b0e13 0%,
        #0f131b 100%
    );
}

/* INTRO */

.services-intro-wide {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

/* EYEBROW */

.services-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #c9a24d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* TITLE */

.services-intro-wide h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 22px;
    line-height: 1.2;
}

.services-intro-wide h2 span {
    color: #c9a24d;
}

/* TEXT */

.services-intro-wide p {
    color: #9ca3af;
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}
/* ================= CTA SECTION ================= */

.cta-section {
    padding: 8%;
    background: linear-gradient(
        to top,
        #0b0e13 0%,
        #0f131b 100%
    );
}


/* BOX Z OBRAZEM */

.cta-box {
    position: relative;
    min-height: 60vh;
    border-radius: 28px;
    background-image: url("../img/maincta.jpg"); /* TWOJE ZDJĘCIE */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(11,14,19,0.6),
        rgba(11,14,19,0.85)
    );
    z-index: 1;
}

/* CONTENT */

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 20px;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    margin-bottom: 22px;
}

.cta-content h2 span {
    color: #c9a24d;
}

.cta-content p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* BUTTONS */

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .cta-section {
        padding: 12% 6%;
    }

    .cta-box {
        min-height: 50vh;
        border-radius: 20px;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }
}
/* ================= ABOUT ================= */

.about-section {
    padding: 10% 8%;
    background: linear-gradient(
        to bottom,
        #0b0e13 0%,
        #0f131b 100%
    );
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* TEXT */

.about-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #c9a24d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text h2 span {
    color: #c9a24d;
}

.about-text p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 620px;
}

/* STATS */

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.15);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #c9a24d;
    margin-bottom: 6px;
}

.stat-box span {
    color: #9ca3af;
    font-size: 14px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .about-section {
        padding: 14% 8%;
    }
}
/* ================= FAQ ================= */

.faq-section {
    padding: 10% 8%;
    background:
        linear-gradient(
            to top,
            rgba(11,14,19,0.95) 0%,
            rgba(15,19,27,0.85) 60%,
            rgba(15,19,27,0.6) 100%
        ),
        url("../img/faqmain.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}


.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.faq-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #c9a24d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.faq-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    margin-bottom: 18px;
}

.faq-header h2 span {
    color: #c9a24d;
}

.faq-header p {
    color: #9ca3af;
    line-height: 1.7;
}

/* LIST */

.faq-list {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

/* ITEM */

.faq-item {
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.15);
    border-radius: 18px;
    padding: 30px 34px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #9ca3af;
    line-height: 1.6;
}

/* CTA */

.faq-cta {
    text-align: center;
}

.faq-link {
    color: #c9a24d;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

.faq-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #c9a24d;
    margin: 8px auto 0;
    transition: width 0.3s ease;
}

.faq-link:hover::after {
    width: 60px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 14% 8%;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-item {
        padding: 26px;
    }
}
/* ================= TESTIMONIALS ================= */

.testimonials-section {
    padding: 10% 8%;
    background: linear-gradient(
        to bottom,
        #0b0e13 0%,
        #0f131b 100%
    );
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.testimonials-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #c9a24d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.testimonials-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    margin-bottom: 18px;
}

.testimonials-header h2 span {
    color: #c9a24d;
}

.testimonials-header p {
    color: #9ca3af;
    line-height: 1.7;
}

/* GRID */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.testimonial-card {
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.15);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* IMAGE */

.testimonial-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 22px;
}

.testimonial-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* TEXT */

.testimonial-text {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

/* AUTHOR */

.testimonial-author {
    color: #c9a24d;
    font-weight: 600;
    font-size: 14px;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-header h2 {
        font-size: 32px;
    }
}
/* ================= CONTACT ================= */

.contact-section {
    padding: 10% 8%;
    background: linear-gradient(
        to top,
        #0b0e13 0%,
        #0f131b 100%
    );
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* HEADER */

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    margin-bottom: 18px;
}

.contact-header h2 span {
    color: #c9a24d;
}

.contact-header p {
    color: #9ca3af;
    line-height: 1.7;
}

/* GRID */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* FORM */

.contact-form {
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.15);
    border-radius: 24px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 26px;
}

/* INPUTS */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #0f131b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    color: #e5e7eb;
    margin-bottom: 18px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c9a24d;
}

/* CHECKBOX */

.contact-checkbox {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 26px;
    cursor: pointer;
}

.contact-checkbox input {
    display: none;
}

.contact-checkbox span {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(201,162,77,0.6);
    border-radius: 4px;
    position: relative;
}

.contact-checkbox input:checked + span::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 3px;
    color: #c9a24d;
    font-size: 14px;
}

/* INFO */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details h4 {
    font-size: 20px;
    margin-bottom: 14px;
}

.contact-details p {
    color: #9ca3af;
    line-height: 1.6;
}

/* MAP */

.contact-map {
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.15);
    border-radius: 20px;
    height: 220px;
    overflow: hidden;
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px;
    }
}
/* ================= MODAL ================= */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(11,14,19,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #151a23;
    border: 1px solid rgba(201,162,77,0.25);
    border-radius: 22px;
    padding: 40px;
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.modal-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 16px;
}

.modal-box p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* ================= FOOTER ================= */

.site-footer {
    width: 100%;
    background: linear-gradient(
        to bottom,
        #0b0e13 0%,
        #0f131b 100%
    );
    padding: 3rem 0 3rem; /* WIĘCEJ OD GÓRY */
    margin-top: 5rem; /* ODCIĘCIE OD SEKCJI WYŻEJ */
    position: relative;
}

/* GÓRNA LINIA ODCINAJĄCA */

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 84%;
    height: 1px;
    background: rgba(201,162,77,0.25);
}

/* CONTAINER */

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

/* BRAND */

.footer-brand h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 18px;
}

.footer-brand span {
    color: #c9a24d;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 14px;
}

/* COLUMNS */

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #e5e7eb;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
    text-decoration: none;
}

.footer-col a:hover {
    color: #c9a24d;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 70px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

/* SEO TEXT */

.footer-seo {
    margin-top: 10px;
    font-size: 11px;
    color: #6b7280;
    opacity: 0.7;
    line-height: 1.5;
}

/* MOBILE */

@media (max-width: 900px) {
    .site-footer {
        padding: 6rem 0 3rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .site-footer::before {
        width: 90%;
    }
}
@media (max-width: 992px) {

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

}