/* === PCV Internal Page Styles (Hello Elementor) === */
:root {
    --pcv-orange: #E8991C;
    --pcv-yellow: #F5C518;
    --pcv-blue: #2B7AB5;
    --pcv-dark-blue: #1A4A7A;
    --pcv-dark: #0a0a14;
    --pcv-light-gray: #F5F7FA;
    --pcv-text: #333;
}

body {
    font-family: 'Poppins', -apple-system, sans-serif;
    color: var(--pcv-text);
    line-height: 1.7;
}

/* Page hero banners */
.pcv-page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.pcv-page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,20,0.82), rgba(26,74,122,0.7));
}

.pcv-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 30px;
}

.pcv-page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pcv-page-hero p {
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
}

/* Content sections */
.pcv-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 25px;
}

.pcv-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--pcv-dark-blue);
    margin: 0 0 10px;
}

.pcv-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.pcv-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--pcv-orange), var(--pcv-yellow));
    border: none;
    margin: 0 0 25px;
}

.pcv-divider-center {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--pcv-orange), var(--pcv-yellow));
    border: none;
    margin: 0 auto 25px;
}

/* Two column layout */
.pcv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.pcv-row:last-child { margin-bottom: 0; }

.pcv-row img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Alt background section */
.pcv-section-gray {
    background: var(--pcv-light-gray);
    padding: 60px 25px;
}

.pcv-section-gray .pcv-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Dark section */
.pcv-section-dark {
    background: linear-gradient(135deg, var(--pcv-dark), var(--pcv-dark-blue));
    color: #fff;
    padding: 60px 25px;
    text-align: center;
}

.pcv-section-dark .pcv-inner {
    max-width: 800px;
    margin: 0 auto;
}

.pcv-section-dark h2 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.pcv-section-dark p {
    color: rgba(255,255,255,0.9);
    font-size: 19px;
}

/* Orange CTA section */
.pcv-section-cta {
    background: linear-gradient(135deg, var(--pcv-orange), var(--pcv-yellow));
    padding: 55px 25px;
    text-align: center;
    color: #fff;
}

.pcv-section-cta h2 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 10px;
}

.pcv-section-cta p {
    color: rgba(255,255,255,0.95);
    font-size: 18px;
    margin: 0 0 25px;
}

/* Buttons */
.pcv-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--pcv-orange), var(--pcv-yellow));
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232,153,28,0.3);
}

.pcv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,153,28,0.4);
    color: #fff !important;
}

.pcv-btn-white {
    display: inline-block;
    padding: 14px 35px;
    background: #fff;
    color: var(--pcv-dark-blue) !important;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pcv-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pcv-btn-dark {
    display: inline-block;
    padding: 14px 35px;
    background: var(--pcv-dark-blue);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* FAQ items */
.pcv-faq {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    border-left: 4px solid var(--pcv-orange);
}

.pcv-faq-q {
    padding: 22px 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--pcv-dark-blue);
}

.pcv-faq-a {
    padding: 0 25px 22px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Contact grid */
.pcv-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.pcv-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.pcv-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pcv-blue), var(--pcv-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.pcv-contact-item a {
    color: var(--pcv-dark-blue);
    text-decoration: none;
    font-size: 17px;
}

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

/* Product sections */
.pcv-product-block {
    padding: 45px 0;
    border-bottom: 1px solid #eee;
}

.pcv-product-block:last-child { border-bottom: none; }

/* Card for form */
.pcv-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Icon check list */
.pcv-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pcv-check-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: #333;
}

.pcv-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--pcv-orange);
    font-weight: bold;
}

/* Phone highlight */
.pcv-phone {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--pcv-orange);
    text-decoration: none;
}

.pcv-phone:hover { color: var(--pcv-dark-blue); }

/* Responsive */
@media (max-width: 768px) {
    .pcv-page-hero h1 { font-size: 32px; }
    .pcv-page-hero { min-height: 280px; }
    .pcv-row, .pcv-contact-row { grid-template-columns: 1fr; }
    .pcv-content h2 { font-size: 26px; }
    .pcv-content { padding: 40px 20px; }
}

/* Hero outline button */
.pcv-btn-outline {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #fff !important;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.pcv-btn-outline:hover {
    background: #fff;
    color: var(--pcv-dark-blue) !important;
}

/* Feature cards */
.pcv-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pcv-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.pcv-feature-card p {
    color: #555;
    font-size: 15px;
}

/* Home hero responsive */
@media (max-width: 768px) {
    .pcv-page-hero h1 { font-size: 36px !important; }
    .pcv-row[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}
