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

:root {
    --pink: #ff2cc8;
    --gradTop: #9b6bff;
    --gradMid: #6b35ff;
    --gradBot: #4a19d8;
}

body {
    background: linear-gradient(to bottom,
            #1e0056 0%,
            #12002e 100%);
    font-family: "Urbanist", sans-serif;
    color: #fff;
}

/* ================= CTA SECTION ================= */

.cta-section {
    width: 100%;
    max-width: 1300px;
    padding: 0px 20px 50px 20px;
    margin: 0px auto;
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: .5px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta-meta {
    margin-bottom: 22px;
}

.cta-meta a {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    padding: 16px 80px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    background:
        linear-gradient(180deg, #b15cff 0%, #7a2cff 55%, #5c14ff 100%);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .55),
        0 0 55px rgba(122, 44, 255, .55);
    transform: skewX(-18deg);
    transition: .2s ease;
}

.cta-btn span {
    display: inline-block;
    transform: skewX(18deg);
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.cta-btn:hover {
    transform: skewX(-18deg) translateY(-2px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .65),
        0 0 70px rgba(122, 44, 255, .7);
}

.divider {
    width: 100%;
    border: 1px solid rgba(255, 0, 200, .6);
    box-shadow: 0 0 25px rgba(255, 0, 200, .25), 0 15px 35px rgba(0, 0, 0, .5);
}

/* ================= FOOTER BAR ================= */

.footer {
    width: 100%;
    padding: 25px 20px;
    margin: 0px auto;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    width: 140px;
}

.footer-nav {
    display: flex;
    column-gap: 60px;
    font-size: 18px;
    flex-wrap: wrap;
    row-gap: 30px;
    font-weight: 600;
    justify-content: center;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
}

.footer-nav a:hover {
    opacity: 1;
}

.social {
    display: flex;
    gap: 14px;
}

.social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.social .fb {
    background: #39f6ff;
    color: #000;
}

.social .tw {
    background: #39f6ff;
    color: #000;
}

.social .ig {
    background: #ff2cc8;
}

/* responsive */

@media(max-width:900px) {
    .footer {
        flex-direction: column;
        gap: 20px;
    }
}

/* ================= PROCESS SECTION ================= */

.process-section {
    width: 100%;
    padding: 0px 20px 65px 20px;
    max-width: 1300px;
    margin: 0px auto;
}

.process-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */

.process-card {
    border-radius: 6px;
    overflow: hidden;
    border: 3px solid rgba(255, 0, 200, .6);
    background: #120024;
    box-shadow:
        0 0 25px rgba(255, 0, 200, .25),
        0 15px 35px rgba(0, 0, 0, .5);
    transition: .2s ease;
}

.process-card .stars img {
    max-width: 150px;
}

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

.process-card .process-bg {
    width: 100%;
    object-fit: contain;
    display: block;
}

.process-card .icon {
    display: flex;
    justify-content: center;
}

.process-card .icon img {
    width: 100%;
    object-fit: contain;
    max-width: 90px;
}

/* bottom row style */

.process-card.bottom {
    position: relative;
}

.process-card.bottom .process-card-single {
    padding: 25px 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.process-card.bottom .process-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    letter-spacing: 3px;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 200, .5);
}

.review {
    font-size: 16px;
    font-weight: 600;
}

/* responsive */

@media(max-width:1000px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:650px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= ICON SECTION ================= */

.services-icons {
    width: 100%;
    max-width: 1300px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px 80px 20px;
}

.icons-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 90px;
    width: 100%;
}

/* pojedyncza kolumna */
.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* neon circle */

/* .icon-circle{
width:130px;
height:130px;
border-radius:50%;

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

border:3px solid #ff2cc8;

box-shadow:
  0 0 25px rgba(255,44,200,.6),
  inset 0 0 15px rgba(255,44,200,.5);

position:relative;
} */

/* drugi cienki ring */
/* .icon-circle::after{
content:"";
position:absolute;
inset:10px;
border-radius:50%;
border:2px solid rgba(255,44,200,.6);
box-shadow:0 0 15px rgba(255,44,200,.5);
} */

.icon-symbol {
    width: 200px;
}

/* tekst */
.icon-box p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    font-weight: 600;
}

/* divider */
.line-divider {
    width: 100%;
    margin: 55px 0 30px;
    border: 1px solid rgba(255, 0, 200, .6);
    box-shadow: 0 0 25px rgba(255, 0, 200, .25), 0 15px 35px rgba(0, 0, 0, .5);
}

/* book button wrapper */
.book-wrapper {
    display: flex;
    justify-content: center;
}

/* responsive */
@media(max-width:900px) {
    .icons-wrapper {
        gap: 50px;
    }
}

.hero {
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .22) 60%, rgba(0, 0, 0, .55));
}

.about {
    padding: 65px 0;
}
.company {
    padding-top: 65px;
}

.company-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 20px;
}

.company-container ul{
    padding-left: 45px;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    padding: 0px 20px;
}

.about-left h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-text {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-location {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.about-address {
    list-style: disc;
    padding-left: 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.about-right img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1000px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-left h2 {
        font-size: 38px;
    }
}

.royal-btn {
    position: relative;
    display: inline-block;
    padding: 20px 70px;
    border: none;
    cursor: pointer;

    background: linear-gradient(to bottom,
            #530388 0%,
            #49038a 100%);

    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    transform: skewX(-12deg);
    box-shadow:
        0 0 0 1px rgba(255, 0, 200, 0.5),
        0 8px 25px rgba(140, 0, 255, 0.6);
    transition: 0.3s ease;
}

.royal-btn span {
    display: inline-block;
    transform: skewX(12deg);
}

.royal-btn:hover {
    box-shadow:
        0 0 0 1px rgba(255, 0, 200, 0.8),
        0 12px 35px rgba(200, 0, 255, 0.9);
    color: #fff;
}

.hero-actions {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    z-index: 9;
    bottom: 30px;
    left: 50px;
    right: 50px;
    display: none;
}

.hero-actions-mobile {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0px;
    padding: 0px 20px;
}

.hero-actions-mobile .neo-btn {
    text-align: center;
    width: 100%;
    padding: 25px 10px;
}

.hero .hero-image {
    width: 100%;
}

.gallery{
    padding: 50px 0px;
}

.gallery-container{
    max-width: 1300px;
    margin: 0px auto;
    padding: 0px 20px;
}

.gallery-content{
    column-count: 2;
    gap: 20px;
}

.gallery-single{
    margin-bottom: 40px;
}

@media(min-width: 500px){
    .gallery-content{
        column-count: 3;
    } 
}
@media(min-width: 700px){
    .gallery-content{
        column-count: 4;
    } 
}

@media(min-width: 768px){
    .gallery{
        padding: 100px 0px;
    }
    .gallery-content{
        column-count: 6;
    } 
}

.neo-btn {
    position: relative;
    display: inline-block;
    padding: 25px 50px;
    border: none;
    background: linear-gradient(to bottom,
            #530388 0%,
            #49038a 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    transform: skewX(-12deg);
    box-shadow:
        0 0 0 1px rgba(255, 0, 200, 0.5),
        0 8px 25px rgba(140, 0, 255, 0.6);
    transition: 0.3s ease;
}

.neo-btn span {
    display: inline-block;
    transform: skewX(12deg);
    text-align: center;
}

@media(min-width: 768px) {
    .hero-actions {
        display: flex;
    }

    .hero-actions-mobile {
        display: none;
    }

    .icons-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-section {
    padding: 120px 0;
    position: relative;

    padding: 140px 0;

    background-image: url("../images/bg_contact.png");
    background-size: cover;
    background-position: center;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(15, 0, 40, 0.5),
            rgba(25, 0, 60, 0.5));

}

.contact-section .contact-container {
    max-width: 1300px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0px 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
}

.contact-section .contact-form h2,
.contact-section .contact-info h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-section .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-section .contact-form .custom-row {
    row-gap: 18px;
}

.contact-section .contact-form .custom-row .col-md-6 {
    padding: 0px 15px;
}

.contact-section .contact-form input[type="text"],
.contact-section .contact-form input[type="email"],
.contact-section .contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(10, 0, 40, 0.55);
    border-radius: 8px;
    border: 1px solid transparent;
    color: white;
    font-size: 15px;
    outline: none;
    background-image:
        linear-gradient(rgba(10, 0, 40, 0.55), rgba(10, 0, 40, 0.55)),
        linear-gradient(90deg, #ff00c8, #7a00ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 0 10px rgba(255, 0, 200, 0.25),
        inset 0 0 12px rgba(255, 255, 255, 0.03);
    transition: 0.25s;
}

.contact-section .contact-form .form-check p {
    margin-bottom: 0px;
}

.contact-section .contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
    color: #fff;
    opacity: 0.8;
}

.contact-section .contact-divider {
    width: 1px;
    height: 280px;
    background: linear-gradient(to bottom,
            transparent,
            #ff00c8,
            transparent);
}

.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-section .info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-section .info-item a{
    color: white;
    font-size: 18px;
}

.contact-section .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px #ff00c8;
    border-radius: 50%;
}

.contact-section .icon-circle img {
    width: 60px;
}

.contact-section .contact-btn {
    width: fit-content;
}

@media (max-width:1000px) {
    .contact-section .contact-container {

        grid-template-columns: 1fr;
        gap: 50px;

    }

    .contact-section .contact-divider {
        display: none;
    }

    .contact-section .contact-right {
        order: 2;
    }

}

.contact-hero {
    position: relative;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(20, 0, 40, 0.65) 0%,
            rgba(20, 0, 40, 0.35) 100%);
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.contact-hero__title {
    margin: 0;
    color: #ffd6f4;
    font-size: 50px;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 80, 200, 0.35);
}

.contact-hero__subtitle {
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 500px;
        padding-top: 90px;
    }

    .contact-hero__subtitle {
        margin-top: 16px;
    }
}

@media(min-width: 768px) {
    .contact-hero__title {
        font-size: 72px;
    }

    .contact-hero__subtitle {
        font-size: 32px;
    }
}

.pricing{
    padding:120px 20px;
    background:#0b0020;
    background-size: cover;
}

.pricing-container{
    max-width:1300px;
    margin: 0px auto;
    position: relative;
}

.pricing-title{
    text-align:center;
    font-size:48px;
    color:white;
    margin-bottom:80px;
    letter-spacing:2px;
}

.pricing-box .pricing-item{
    background:rgba(20,0,40,0.6);
    border-radius: 8px;
    border:1px solid rgba(255,0,200,0.3);
    margin-bottom: 10px;
}

.pricing-box .pricing-item:last-child{
    margin-bottom: 0px;
}

.pricing-box-title{
    background-image: linear-gradient(rgba(10, 0, 40, 0.55), rgba(10, 0, 40, 0.55)), linear-gradient(90deg, #ff00c8, #7a00ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 10px rgba(255, 0, 200, 0.25), inset 0 0 12px rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid transparent;
    padding:12px 20px;
    font-weight:700;
    color:white;
    margin-bottom: 10px;
    letter-spacing:1px;
    text-transform: uppercase;
}

.pricing-price-content{
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-item h3{
    background-image: linear-gradient(rgba(10, 0, 40, 0.55), rgba(10, 0, 40, 0.55)), linear-gradient(90deg, #ff00c8, #7a00ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 8px 8px 0px 0px;
    padding: 12px 20px;
    font-weight: 700;
    color:white;
    font-size:18px;
    display: flex;
    justify-content: space-between;
}

.pricing-item ul{
    margin: 0;
    color: #fff;
    font-weight: 600;
    padding-left: 20px;
}

.pricing-content{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
}

.pricing-content p{
    margin-bottom: 0px;
}

@media(min-width: 570px){
    .pricing-content{
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
}

@media(min-width: 768px){
    .pricing-content{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media(min-width: 1024px){
    .pricing-content{
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
}

.pricing-box{
    margin-bottom: 30px;
}

.pricing-item li{
    color:#fff;
    font-size:14px;
    margin-bottom:5px;
}

.price{
    font-size:16px;
    font-weight: 800;
    color:white;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.price-title{
    font-weight: 500;
    font-size: 14px;
}

.price-grid{
    display:flex;
    justify-content:flex-end;
    gap:20px;
    margin-top:10px;
}

.price-grid span{
    color:white;
    font-weight:600;
}

.pricing{
    position: relative;
}

.pricing::before{
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(20, 0, 40, 0.65) 0%, rgba(20, 0, 40, 0.5) 100%);
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}