.p360-about-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.p360-about-visual {
    position: relative;
}

.p360-about-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.p360-about-img-main img {
    transition: transform 0.6s ease;
}

.p360-about-visual:hover .p360-about-img-main img {
    transform: scale(1.03);
}

.p360-about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--p360-red);
    color: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
    z-index: 2;
    text-align: center;
    min-width: 120px;
}

.p360-badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--p360-font-heading);
    margin-bottom: 0.2rem;
}

.p360-badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.p360-pre-heading {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.p360-heading-xl {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--p360-black);
    margin-bottom: 2rem;
    font-family: var(--p360-font-heading);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.p360-lead-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.p360-body-text {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.p360-premium-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.p360-premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.p360-premium-list li i {
    background: rgba(200, 16, 46, 0.1);
    color: var(--p360-red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.p360-about-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.p360-link-btn {
    color: var(--p360-black);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.p360-link-btn:hover {
    color: var(--p360-red);
}

@media (max-width: 992px) {
    .p360-about-grid-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .p360-about-visual {
        padding-right: 0;
        margin-bottom: 2rem;
        order: -1;
    }

    .p360-heading-xl {
        font-size: 2.2rem;
        word-wrap: break-word;
    }

    .p360-about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .p360-btn.p360-btn-large {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .p360-about-badge {
        right: -10px;
        left: auto;
        bottom: -15px;
        padding: 1rem;
        transform: none;
        width: auto;
        min-width: 110px;
    }

    .p360-badge-number {
        font-size: 1.5rem;
    }

    .p360-section-premium {
        padding: 2.5rem 0;
    }
}

.p360-blog-section-premium {
    padding: 6rem 0;
    background: #ffffff;
}

.p360-blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .p360-blog-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

.p360-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.p360-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.p360-news-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.p360-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.p360-news-card:hover .p360-news-img {
    transform: scale(1.1);
}

.p360-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.p360-date-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--p360-black);
}

.p360-date-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--p360-red);
    font-weight: 700;
}

.p360-news-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.p360-cat-text {
    color: var(--p360-red);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.p360-news-title {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0.5rem 0 1rem;
    font-weight: 700;
}

.p360-news-title a {
    color: var(--p360-black);
    text-decoration: none;
    transition: color 0.3s;
}

.p360-news-title a:hover {
    color: var(--p360-red);
}

.p360-news-divider {
    height: 1px;
    background: #eee;
    width: 100%;
    margin: auto 0 1.5rem;
}

.p360-read-more {
    color: var(--p360-black);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.p360-read-more:hover {
    color: var(--p360-red);
    gap: 1rem;
}

.p360-blog-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .p360-blog-grid-premium {
        grid-template-columns: 1fr;
    }

    .p360-news-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .p360-blog-section-premium {
        padding: 4rem 0;
    }
}

.p360-contact-section-premium {
    background-color: #1a1a1a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.p360-contact-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
    transform: skewX(-15deg) translateX(20%);
    z-index: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.p360-contact-wrapper-premium {
    display: flex;
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

.p360-contact-info-col {
    flex: 1;
    padding-right: 2rem;
}

.p360-pre-heading-light {
    display: block;
    color: var(--p360-red);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.p360-heading-light {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-text-light-subtle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 450px;
}

.p360-contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.p360-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.p360-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p360-red);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.p360-detail-item:hover .p360-detail-icon {
    background: var(--p360-red);
    color: white;
    transform: scale(1.1);
}

.p360-detail-text h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.p360-link-white {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.p360-link-white:hover {
    color: white;
}

.p360-detail-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.p360-social-row {
    display: flex;
    gap: 1rem;
}

.p360-social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.p360-social-btn:hover {
    background: white;
    color: var(--p360-black);
    border-color: white;
    transform: translateY(-3px);
}

.p360-contact-form-col {
    flex: 1;
    min-width: 320px;
}

.p360-form-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    min-height: 700px;
    position: relative;
}

.p360-skeleton-loader {
    padding: 2.5rem;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    box-sizing: border-box;
}

.p360-skeleton-bar {
    background: #f0f0f0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.p360-skeleton-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: p360SkeletonLoading 1.5s infinite;
}

@keyframes p360SkeletonLoading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 992px) {
    .p360-contact-wrapper-premium {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .p360-contact-info-col {
        padding-right: 0;
    }

    .p360-contact-bg-accent {
        display: none;
    }
}

@media (max-width: 640px) {
    .p360-contact-section-premium {
        padding: 4rem 0;
    }

    .p360-heading-light {
        font-size: 2.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .p360-text-light-subtle {
        font-size: 1rem;
        max-width: 100%;
        word-wrap: break-word;
    }

    .p360-detail-item {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .p360-detail-text {
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.p360-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.p360-faq-item {
    margin-bottom: 1.2rem;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.p360-faq-item:hover {
    border-color: #ddd;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.p360-faq-item.active {
    border-color: var(--p360-red);
    box-shadow: 0 15px 35px rgba(200, 16, 46, 0.1);
}

.p360-faq-question {
    width: 100%;
    padding: 1.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--p360-black);
    font-family: var(--p360-font-heading);
    transition: all 0.3s ease;
    position: relative;
}

.p360-faq-item.active .p360-faq-question {
    background: white;
    color: var(--p360-black);
    padding-bottom: 1rem;
}

.p360-faq-question span {
    padding-right: 2rem;
    line-height: 1.4;
}

.p360-faq-question i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(200, 16, 46, 0.05);
    border-radius: 50%;
    font-size: 0.8rem;
    color: var(--p360-red);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.p360-faq-item.active .p360-faq-question i {
    background: var(--p360-red);
    color: white;
    transform: rotate(45deg);
}

.p360-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
}

.p360-faq-answer-inner {
    padding: 0 2.5rem 2rem 2.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.p360-faq-answer-inner p {
    margin: 0;
    border-left: 3px solid var(--p360-red);
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .p360-faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1.05rem;
    }

    .p360-faq-answer-inner {
        padding: 0 1.5rem 1.5rem;
    }

    .p360-faq-answer-inner p {
        padding-left: 1rem;
    }

    .p360-faq-question i {
        width: 28px;
        height: 28px;
    }
}

.p360-footer-premium {
    background: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 0 0;
    font-size: 0.95rem;
}

.p360-footer-grid-premium {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.p360-footer-brand p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.p360-footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.p360-social-links {
    display: flex;
    gap: 0.8rem;
}

.p360-social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.p360-social-circle:hover {
    background: var(--p360-red);
    transform: translateY(-3px);
}

.p360-footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
    position: relative;
    padding-bottom: 1rem;
}

.p360-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--p360-red);
}

.p360-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-footer-links li {
    margin-bottom: 0.8rem;
}

.p360-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.p360-footer-links a:hover {
    color: var(--p360-red);
    transform: translateX(5px);
}

.p360-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.p360-contact-list i {
    color: var(--p360-red);
    margin-top: 4px;
}

.p360-contact-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.p360-contact-list a:hover {
    color: white;
}

.p360-copyright-bar {
    background: #111;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.p360-legal-links {
    display: flex;
    gap: 1.5rem;
}

.p360-legal-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.p360-legal-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .p360-footer-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .p360-footer-grid-premium {
        grid-template-columns: 1fr;
    }

    .p360-footer-premium {
        padding: 3rem 0 0 0;
    }

    .p360-copyright-bar .p360-container {
        flex-direction: column;
        text-align: center;
    }
}

.p360-gallery-filters-premium {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.p360-filter-pill {
    background: transparent;
    border: 1px solid #ddd;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--p360-font-heading);
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.p360-filter-pill:hover,
.p360-filter-pill.active {
    background: var(--p360-black);
    color: white;
    border-color: var(--p360-black);
    transform: translateY(-2px);
}

.p360-gallery-grid-mosaic {
    columns: 3;
    column-gap: 2rem;
    width: 100%;
}

.p360-mosaic-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    cursor: pointer;
    width: 100%;
}

.p360-mosaic-item.hidden {
    display: none;
}

.p360-mosaic-item.fade-in {
    animation: p360FadeInUp 0.6s ease forwards;
}

.p360-mosaic-inner {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.p360-mosaic-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.p360-mosaic-inner:hover img {
    transform: scale(1.1);
}

.p360-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.p360-mosaic-inner:hover .p360-mosaic-overlay {
    opacity: 1;
}

.p360-mosaic-cat {
    color: var(--p360-red);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.p360-mosaic-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
    font-family: var(--p360-font-heading);
}

.p360-mosaic-line {
    width: 40px;
    height: 3px;
    background: white;
    margin-top: 1rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease 0.3s;
}

.p360-mosaic-inner:hover .p360-mosaic-cat,
.p360-mosaic-inner:hover .p360-mosaic-title {
    transform: translateY(0);
}

.p360-mosaic-inner:hover .p360-mosaic-line {
    transform: scaleX(1);
}

.p360-gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.p360-modal-content-wrapper {
    position: relative;
    margin: auto;
    width: 85%;
    max-width: 1100px;
    animation: p360Zoom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.p360-modal-content {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes p360Zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.p360-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}

.p360-modal-close:hover {
    color: var(--p360-red);
    transform: rotate(90deg);
}

#p360-modal-caption {
    margin-top: 1.5rem;
    text-align: center;
    color: white;
    font-size: 1.25rem;
    font-family: var(--p360-font-heading);
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .p360-modal-content-wrapper {
        width: 95%;
    }

    .p360-modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .p360-gallery-grid-mosaic {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .p360-gallery-grid-mosaic {
        columns: 1;
    }

    .p360-filter-pill {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .p360-gallery-filters-premium {
        gap: 0.5rem;
    }

    .p360-filter-pill {
        width: 100%;
    }
}

.p360-hero-contact {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.p360-hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.p360-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(170, 43, 54, 0.3) 100%);
    z-index: 2;
}

.p360-hero-contact .p360-container {
    position: relative;
    z-index: 3;
}

.p360-hero-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.p360-hero-contact__content {
    color: white;
}

.p360-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.p360-hero-badge i {
    color: var(--p360-red);
    margin-right: 8px;
}

.p360-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.p360-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.p360-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.p360-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.p360-hero-feature i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.p360-btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.p360-hero-cta-text {
    font-size: 1rem;
    opacity: 0.9;
}

.p360-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.p360-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--p360-black);
    margin-bottom: 0.5rem;
}

.p360-form-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.p360-form-group {
    margin-bottom: 1.25rem;
}

.p360-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.p360-form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--p360-font-body);
    transition: all 0.3s ease;
    background: #fafafa;
}

.p360-form-input:focus {
    outline: none;
    border-color: var(--p360-red);
    background: white;
    box-shadow: 0 0 0 3px rgba(170, 43, 54, 0.1);
}

.p360-btn-block {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.p360-form-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.p360-form-response.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.p360-form-response.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.p360-skeleton-loader {
    padding: 10px;
    animation: p360_pulse 1.5s infinite ease-in-out;
}

@keyframes p360_pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

.p360-skeleton-bar,
.p360-skeleton-input,
.p360-skeleton-btn {
    background-color: #f0f0f0;
    border-radius: 4px;
}

.p360-skeleton-input {
    width: 100%;
    height: 45px;
    margin-bottom: 15px;
}

.p360-skeleton-btn {
    width: 100%;
    height: 50px;
    margin-top: 20px;
    background-color: #e0e0e0;
}

.p360-skeleton-row {
    display: flex;
    gap: 10px;
}

@media (max-width: 1024px) {
    .p360-hero-contact {
        padding: 6rem 0 4rem;
        min-height: auto;
        background-attachment: scroll;
    }

    .p360-hero-contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .p360-hero-title {
        font-size: 2.5rem;
    }

    .p360-hero-description {
        font-size: 1.1rem;
    }

    .p360-hero-features {
        grid-template-columns: 1fr;
    }

    .p360-hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .p360-form-card {
        padding: 2rem;
    }

    .p360-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .p360-hero-title {
        font-size: 2rem;
    }

    .p360-hero-contact {
        padding: 5rem 0 3rem;
    }

    .p360-form-card {
        padding: 1.5rem;
    }
}

.p360-hero-paint {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    background: #222;
    overflow: hidden;
    font-family: var(--p360-font-heading);
}

.p360-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 50;
    font-size: 1.2rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.p360-paint-container {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: none;
}

.p360-paint-container.is-ready {
    opacity: 1;
}

.p360-layer-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

canvas#p360-paint-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    touch-action: none;
}

.p360-content-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
    text-align: center;
}

.p360-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--p360-red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.p360-title {
    color: white;
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.p360-cta-wrapper {
    pointer-events: auto;
}

.p360-paint-cursor {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100;
    font-size: 3.5rem;
    color: var(--p360-red);
    transform: translate(-10%, -10%);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
    transition: transform 0.1s;
}

.p360-paint-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    pointer-events: none;
    backdrop-filter: blur(5px);
    animation: p360FadeInOut 3s infinite;
}

@keyframes p360FadeInOut {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .p360-title {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .p360-paint-cursor,
    .p360-paint-hint {
        display: none !important;
    }

    canvas#p360-paint-canvas {
        display: none !important;
    }

    .p360-paint-container {
        cursor: auto;
        --hero-bg-before: url('<?php echo esc_url($atts[' before_img']); ?>');
        --hero-bg-after: url('<?php echo esc_url($atts[' after_img']); ?>');
        background-image: var(--hero-bg-before);
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        transition: background-image 0.5s ease-in-out;
    }

    .p360-paint-container.is-after {
        background-image: var(--hero-bg-after);
    }

    .p360-layer-before {
        display: none;
    }

    .p360-hero-paint {
        height: 100vh;
        max-height: 800px;
    }

    .p360-cta-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    #p360-mobile-swap-btn {
        display: inline-flex;
    }
}

@media (min-width: 1025px) {
    #p360-mobile-swap-btn {
        display: none;
    }
}

.p360-btn-outline {
    background: transparent;
    border: 2px solid white;
    margin-top: 10px;
}

.p360-btn-outline:hover {
    background: white;
    color: var(--p360-red);
}

.p360-color-picker {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: auto;
    transform: none;
    display: flex;
    gap: 15px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.p360-color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.p360-color-dot:hover {
    transform: scale(1.2);
}

.p360-color-dot.active {
    border-color: white;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .p360-color-picker {
        display: flex;
        bottom: 80px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    #p360-mobile-swap-btn {
        display: none !important;
    }

    .p360-brush-control {
        display: none !important;
    }
}

#p360-brush-size {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    transition: background 0.3s;
    margin: 0 5px;
}

#p360-brush-size:hover {
    background: rgba(255, 255, 255, 0.4);
}

#p360-brush-size::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--p360-red);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, background 0.2s;
    margin-top: -5px;
}

#p360-brush-size::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 10px;
}

#p360-brush-size::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #ff4d4d;
}

#p360-brush-size::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--p360-red);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

#p360-brush-size::-moz-range-track {
    height: 5px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

.p360-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: none;
}

.p360-navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.p360-navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.p360-navbar__logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: none;
}

.p360-navbar__menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 1rem;
}

.p360-navbar__link {
    font-family: var(--p360-font-heading);
    font-weight: 600;
    color: var(--p360-black);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
}

.p360-nav-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    line-height: 1;
}

.p360-navbar__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--p360-red);
    transition: width 0.3s ease;
}

.p360-navbar__link:hover::after {
    width: 100%;
}

.p360-navbar__link:hover {
    color: var(--p360-red);
}

.p360-navbar__link--commercial {
    color: var(--p360-red);
}

.p360-navbar__item {
    position: relative;
}

.p360-navbar__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--p360-red);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-radius: 4px;
    z-index: 100;
}

.p360-navbar__item:hover .p360-navbar__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.p360-navbar__submenu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--p360-black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: var(--p360-font-heading);
    text-align: left;
}

.p360-navbar__submenu a:hover {
    background: #f8f8f8;
    color: var(--p360-red);
    padding-left: 1.8rem;
}

.p360-navbar__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--p360-black);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.p360-navbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* === Navbar CTA Buttons (self-contained, no .p360-btn dependency) === */
.p360-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 42px;
    padding: 0 1.2rem;
    font-family: var(--p360-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.p360-nav-cta--outline {
    background: transparent;
    color: var(--p360-red);
    border: 2px solid var(--p360-red);
}

.p360-nav-cta--outline:hover {
    background: var(--p360-red);
    color: white;
}

.p360-nav-cta--solid {
    background: var(--p360-red);
    color: white;
    border: 2px solid var(--p360-red);
}

.p360-nav-cta--solid:hover {
    background: white;
    color: var(--p360-red);
}

.p360-navbar__mobile-call {
    display: none;
    color: var(--p360-red);
    font-size: 1.4rem;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.p360-mobile-menu {
    display: none;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    flex-direction: column;
    padding-top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.p360-mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

.p360-mobile-menu__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p360-mobile-menu__link {
    display: block;
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.p360-mobile-menu__link:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 3rem;
    color: var(--p360-red);
}

.p360-mobile-menu__cta {
    margin-top: auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .p360-navbar {
        padding: 0.8rem 0;
    }

    .p360-navbar__menu {
        display: none;
    }

    .p360-navbar__toggle {
        display: block;
        margin-left: 0.5rem;
    }

    .p360-navbar__mobile-call {
        display: flex;
        align-items: center;
    }

    .p360-nav-cta {
        display: none;
    }

    .p360-navbar__logo img {
        height: 60px !important;
    }
}

.p360-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: none;
}

.p360-navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.p360-navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.p360-navbar__logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: none;
}

.p360-navbar__menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 1rem;
}

.p360-navbar__link {
    font-family: var(--p360-font-heading);
    font-weight: 600;
    color: var(--p360-black);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
}

.p360-nav-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    line-height: 1;
}

.p360-nav-subtext {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 400;
    line-height: 1;
    opacity: 1;
}

.p360-navbar__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--p360-red);
    transition: width 0.3s ease;
}

.p360-navbar__link:hover::after {
    width: 100%;
}

.p360-navbar__link:hover {
    color: var(--p360-red);
}

.p360-navbar__link--commercial {
    color: var(--p360-red);
}

.p360-navbar__item {
    position: relative;
}

.p360-navbar__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--p360-red);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-radius: 4px;
    z-index: 100;
}

.p360-navbar__item:hover .p360-navbar__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.p360-navbar__submenu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--p360-black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: var(--p360-font-heading);
    text-align: left;
}

.p360-navbar__submenu a:hover {
    background: #f8f8f8;
    color: var(--p360-red);
    padding-left: 1.8rem;
}

.p360-navbar__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--p360-black);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.p360-navbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* === Navbar CTA Buttons (self-contained, no .p360-btn dependency) === */
.p360-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 42px;
    padding: 0 1.2rem;
    font-family: var(--p360-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.p360-nav-cta--outline {
    background: transparent;
    color: var(--p360-red);
    border: 2px solid var(--p360-red);
}

.p360-nav-cta--outline:hover {
    background: var(--p360-red);
    color: white;
}

.p360-nav-cta--solid {
    background: var(--p360-red);
    color: white;
    border: 2px solid var(--p360-red);
}

.p360-nav-cta--solid:hover {
    background: white;
    color: var(--p360-red);
}

.p360-navbar__mobile-call {
    display: none;
    color: var(--p360-red);
    font-size: 1.4rem;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.p360-mobile-menu {
    display: none;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    flex-direction: column;
    padding-top: 80px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.p360-mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    display: flex;
}

.p360-mobile-menu__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p360-mobile-menu__link {
    display: block;
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.p360-mobile-menu__link:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 3rem;
    color: var(--p360-red);
}

.p360-mobile-menu__cta {
    margin-top: auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .p360-navbar__menu {
        gap: 1.5rem;
        margin: 0 1rem;
    }

    .p360-nav-text,
    .p360-nav-subtext {
        font-size: 0.7rem;
    }
}

@media (max-width: 992px) {
    .p360-navbar {
        padding: 0.8rem 0;
    }

    .p360-navbar__menu {
        display: none;
    }

    .p360-navbar__toggle {
        display: block;
        margin-left: 0.5rem;
    }

    .p360-navbar__mobile-call {
        display: flex;
        align-items: center;
    }

    .p360-nav-cta {
        display: none;
    }

    .p360-navbar__logo img {
        height: 60px !important;
    }
}

.p360-process-grid-premium {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.p360-step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.p360-step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 24px;
    bottom: -30px;
    width: 2px;
    background: #f0f0f0;
    z-index: 0;
}

.p360-step-marker {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #999;
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.3s ease;
    font-family: var(--p360-font-heading);
}

.p360-step-item:hover .p360-step-marker {
    border-color: var(--p360-red);
    color: var(--p360-red);
    transform: scale(1.1);
}

.p360-step-marker.active {
    background: var(--p360-red);
    border-color: var(--p360-red);
    color: white;
}

.p360-step-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--p360-font-heading);
}

.p360-step-details p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.p360-process-img-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.p360-img-cover {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.p360-float-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: p360Float 3s ease-in-out infinite;
}

@keyframes p360Float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.p360-float-card i {
    font-size: 2rem;
    color: var(--p360-red);
}

.p360-float-card strong {
    display: block;
    color: var(--p360-black);
    font-size: 1rem;
}

.p360-float-card span {
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 992px) {
    .p360-process-grid-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .p360-process-visual {
        order: -1;
    }
}

@media (max-width: 600px) {
    .p360-step-item {
        gap: 1rem;
    }

    .p360-step-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .p360-step-item:not(:last-child)::before {
        left: 19px;
        top: 45px;
    }

    .p360-step-details h3 {
        font-size: 1.1rem;
    }

    .p360-float-card {
        left: auto;
        right: -10px;
        bottom: 20px;
        padding: 0.8rem 1.2rem;
        gap: 0.7rem;
    }

    .p360-float-card i {
        font-size: 1.5rem;
    }

    .p360-float-card strong {
        font-size: 0.85rem;
    }

    .p360-float-card span {
        font-size: 0.7rem;
    }
}

.p360-partners-grid-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.p360-partner-logo-box {
    width: 300px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.4s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.p360-partner-logo-box:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.p360-partner-logo-box img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .p360-partners-grid-premium {
        gap: 2rem;
    }

    .p360-partner-logo-box {
        width: 220px;
        height: 120px;
    }

    .p360-partner-logo-box img {
        max-height: 90px;
    }
}

.p360-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.p360-review-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: var(--p360-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--p360-transition);
}

.p360-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.p360-review-stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.p360-review-text {
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 80px;
}

.p360-review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.p360-review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.p360-review-author h5 {
    margin: 0;
    color: var(--p360-black);
    font-family: var(--p360-font-heading);
    font-weight: 700;
}

.p360-review-author span {
    font-size: 0.8rem;
    color: #888;
}

.p360-divider {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.p360-divider__stroke {
    width: 100%;
    height: auto;
    display: block;
}

.p360-divider--flip .p360-divider__stroke {
    transform: scaleX(-1);
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

.p360-commercial-steps {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .p360-commercial-steps {
        grid-template-columns: 1fr;
    }
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--p360-red);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

.p360-service-detail-premium {
    background: white;
    color: var(--p360-black);
}

.p360-service-hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.p360-service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.p360-service-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
}

.p360-service-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.p360-service-grid-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.p360-service-info-main .p360-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.p360-text-large {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.p360-service-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.p360-capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.p360-capability-item:hover {
    border-color: var(--p360-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p360-capability-item i {
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-capability-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.p360-sidebar-card {
    background: #1a1a1a;
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.p360-sidebar-title {
    font-family: var(--p360-font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.p360-sidebar-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.p360-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.p360-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p360-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.p360-sidebar-list li i {
    color: var(--p360-red);
}

.p360-process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.p360-process-step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p360-process-step-card:hover {
    transform: translateY(-10px);
}

.p360-step-num {
    font-family: var(--p360-font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 16, 46, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.p360-process-step-card h3 {
    font-family: var(--p360-font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.p360-process-step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.p360-bg-light {
    background-color: #f9f9f9;
}

.p360-section-padding {
    padding: 6rem 0;
}

.p360-section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.p360-section-header-centered span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .p360-service-grid-detail {
        grid-template-columns: 1fr;
    }

    .p360-service-hero {
        height: auto;
        padding: 6rem 0;
    }

    .p360-service-title {
        font-size: 3rem;
    }

    .p360-sidebar-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .p360-service-title {
        font-size: 2.5rem;
    }

    .p360-section-padding {
        padding: 4rem 0;
    }
}

#interior-painting-detail .p360-service-hero {
    background-position: center 30%;
}

.p360-services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
}

.p360-service-card-premium {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: auto;
}

.p360-service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.p360-service-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.p360-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.p360-service-content {
    position: relative;
    z-index: 3;
    padding: 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.p360-service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.p360-service-card-premium:hover .p360-service-bg img {
    transform: scale(1.1);
}

.p360-service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--p360-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 4;
}

.p360-service-card-premium:hover::before {
    transform: scaleX(1);
}

.p360-card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.p360-service-card-premium:hover .p360-card-icon-wrapper {
    background: var(--p360-red);
    color: white;
    border-color: var(--p360-red);
    transform: rotateY(180deg);
}

.p360-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--p360-font-heading);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    min-height: 4.5rem;
    display: flex;
    align-items: flex-end;
}

.p360-card-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    min-height: 6.5rem;
}

.p360-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    padding-top: 1rem;
}

.p360-card-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.p360-card-features li::before {
    content: '•';
    color: var(--p360-red);
    font-size: 1.2rem;
}

.p360-card-link {
    margin-top: auto;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p360-service-card-premium:hover .p360-card-link {
    gap: 1rem;
    color: var(--p360-red);
}
/* --- Premium Inline Housecall Pro Booking Button --- */
.p360-hcp-inline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.4rem;
    background-color: var(--p360-red);
    color: var(--p360-white) !important;
    font-family: var(--p360-font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--p360-radius);
    cursor: pointer;
    transition: var(--p360-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.35);
    box-sizing: border-box;
}

.p360-hcp-inline-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.p360-hcp-inline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--p360-white);
    transition: var(--p360-transition);
    z-index: -1;
}

.p360-hcp-inline-btn:hover::before {
    width: 100%;
}

.p360-hcp-inline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 16, 46, 0.45);
    color: var(--p360-red) !important;
}

@media (max-width: 576px) {
    .p360-hcp-inline-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}