/*
Theme Name: VisionPro NDT
Theme URI: https://visionprondt.com
Author: VisionPro NDT
Description: Custom WordPress theme for VisionPro NDT.
Version: 1.0
Text Domain: visionpro
*/
/* ================================
   VISIONPRO GLOBAL
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #0b1739;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================================
   HEADER
================================ */

.vp-header {
    width: 100%;
    background: rgba(7, 18, 43, 0.96);
    color: #fff;
    position: relative;
    z-index: 999;
}

.vp-header-inner {
    max-width: 1400px;
    height: 88px;
    margin: auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

/* LOGO */

.vp-logo a {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.vp-logo span {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.vp-logo small {
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: 4px;
    color: #4da3ff;
}

/* MENU */

.vp-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
}

.vp-nav a {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease;
}

.vp-nav a:hover {
    color: #fff;
}

/* HEADER CTA */

.vp-header-cta {
    display: flex;
    align-items: center;
    gap: 22px;
}

.vp-header-cta > a:first-child {
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.vp-quote-btn {
    padding: 14px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2878ff, #55b7ff);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    transition: transform .3s ease, box-shadow .3s ease;
}

.vp-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40,120,255,.35);
}

/* MOBILE BUTTON */

.vp-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    cursor: pointer;
}

.vp-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .vp-header-inner {
        height: 72px;
        padding: 0 20px;
    }

    .vp-nav,
    .vp-header-cta {
        display: none;
    }

    .vp-menu-toggle {
        display: block;
    }

    .vp-logo span {
        font-size: 18px;
    }

    .vp-logo small {
        font-size: 7px;
        letter-spacing: 3px;
    }
}
/* =====================================
   PREMIUM SINGLE PRODUCT
===================================== */

.vp-product-page {
    background: #f6f8fc;
}

.vp-product-hero {
    padding: 90px 30px;
    background:
        radial-gradient(circle at 80% 20%, rgba(45, 139, 255, .12), transparent 35%),
        #f6f8fc;
}

.vp-product-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */

.vp-product-visual {
    position: relative;
}

.vp-product-image {
    min-height: 520px;
    padding: 50px;
    background: #fff;
    border: 1px solid rgba(11, 23, 57, .08);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(11, 23, 57, .08);
    transition: transform .5s ease, box-shadow .5s ease;
}

.vp-product-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(11, 23, 57, .14);
}

.vp-product-image img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

/* INFORMATION */

.vp-product-label,
.vp-section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #2878ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-product-info h1 {
    margin-bottom: 18px;
    color: #0b1739;
    font-size: 64px;
    line-height: .98;
    letter-spacing: -2px;
}

.vp-product-category {
    margin-bottom: 25px;
    font-size: 14px;
    color: #65718b;
}

.vp-product-category a {
    color: #2878ff;
}

.vp-product-short-description {
    max-width: 650px;
    color: #536078;
    font-size: 17px;
    line-height: 1.75;
}

/* BUTTONS */

.vp-product-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vp-product-quote,
.vp-product-call {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.vp-product-quote {
    color: #fff;
    background: linear-gradient(135deg, #176cff, #51b5ff);
    box-shadow: 0 15px 35px rgba(40, 120, 255, .25);
}

.vp-product-quote span {
    margin-left: 20px;
    transition: transform .3s ease;
}

.vp-product-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(40, 120, 255, .35);
}

.vp-product-quote:hover span {
    transform: translateX(5px);
}

.vp-product-call {
    color: #0b1739;
    border: 1px solid rgba(11, 23, 57, .15);
    background: #fff;
}

.vp-product-call:hover {
    border-color: #2878ff;
    color: #2878ff;
}

/* PRODUCT DETAILS */

.vp-product-details {
    padding: 110px 30px;
    background: #fff;
}

.vp-details-container {
    max-width: 1100px;
    margin: auto;
}

.vp-details-container h2 {
    max-width: 800px;
    margin-bottom: 35px;
    color: #0b1739;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.vp-product-description {
    color: #536078;
    font-size: 17px;
    line-height: 1.85;
}

.vp-product-description p {
    margin-bottom: 20px;
}

/* MOBILE */

@media (max-width: 900px) {

    .vp-product-hero {
        padding: 45px 20px 65px;
    }

    .vp-product-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .vp-product-image {
        min-height: 360px;
        padding: 25px;
        border-radius: 20px;
    }

    .vp-product-info h1 {
        font-size: 42px;
    }

    .vp-product-actions {
        flex-direction: column;
    }

    .vp-product-quote,
    .vp-product-call {
        width: 100%;
    }

    .vp-product-details {
        padding: 70px 20px;
    }
}
/* =====================================
   STEP 15A - PREMIUM ENTRANCE ANIMATION
===================================== */

@keyframes vpFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vpImageReveal {
    from {
        opacity: 0;
        transform: translateX(-45px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.vp-product-image {
    animation: vpImageReveal .9s ease forwards;
}

.vp-product-info {
    animation: vpFadeUp .9s .15s ease both;
}

.vp-product-details {
    animation: vpFadeUp .9s .3s ease both;
}