/**
 * Custom Page Templates Styles
 * Responsive design for How to Measure, Which Material, Our Work, and Contact pages
 * Mobile-first approach with breakpoints at 640px, 768px, 1024px, and 1200px
 */

/* =========================
   RESET & BASE STYLES
   ========================= */

.custom-page-template {
    background: #f9fafb;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    line-height: 1.6;
}

/* Override Porto container on custom pages */
body.page-template-page-how-to-measure #main,
body.page-template-page-which-material #main,
body.page-template-page-our-work #main,
body.page-template-page-contact #main,
body.page-template-page-how-to-measure .main-content,
body.page-template-page-which-material .main-content,
body.page-template-page-our-work .main-content,
body.page-template-page-contact .main-content,
body.page-template-page-how-to-measure #content-container,
body.page-template-page-which-material #content-container,
body.page-template-page-our-work #content-container,
body.page-template-page-contact #content-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.page-template-page-how-to-measure #sidebar,
body.page-template-page-which-material #sidebar,
body.page-template-page-our-work #sidebar,
body.page-template-page-contact #sidebar {
    display: none !important;
}

body.page-template-page-how-to-measure #content,
body.page-template-page-which-material #content,
body.page-template-page-our-work #content,
body.page-template-page-contact #content {
    width: 100% !important;
    float: none !important;
}

/* =========================
   HERO SECTION
   ========================= */

.cpt-hero {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    color: #ffffff;
    padding: 50px 20px 45px;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.cpt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.cpt-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cpt-hero-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    color: #ffffff;
}

.cpt-hero-subtitle {
    font-size: 16px;
    margin: 0 0 24px 0;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cpt-hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
}

.cpt-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.cpt-hero-feature svg {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cpt-hero {
        padding: 60px 40px 55px;
    }
    
    .cpt-hero-title {
        font-size: 42px;
    }
    
    .cpt-hero-subtitle {
        font-size: 18px;
    }
    
    .cpt-hero-features {
        gap: 28px;
    }
    
    .cpt-hero-feature {
        font-size: 15px;
    }
}

/* =========================
   INTRO SECTION
   ========================= */

.cpt-intro-section {
    background: #ffffff;
    padding: 50px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.cpt-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cpt-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cpt-intro-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.cpt-intro-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .cpt-intro-section {
        padding: 70px 40px;
    }
    
    .cpt-intro-content h2 {
        font-size: 32px;
    }
    
    .cpt-intro-content p {
        font-size: 18px;
    }
}

/* =========================
   CONTENT SECTION
   ========================= */

.cpt-content-section {
    background: #f9fafb;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 50px 0;
}

@media (min-width: 768px) {
    .cpt-content-section {
        padding: 80px 40px;
    }
    
    .section-title {
        font-size: 38px;
        margin: 0 0 60px 0;
    }
}

/* =========================
   CONTENT BLOCKS
   ========================= */

.cpt-content-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 24px;
    margin-bottom: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cpt-icon-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cpt-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.cpt-icon-circle.cpt-icon-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.cpt-icon-circle.cpt-icon-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.cpt-icon-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

@media (min-width: 768px) {
    .cpt-content-block {
        padding: 50px 40px;
    }
    
    .cpt-icon-header h2 {
        font-size: 28px;
    }
}

/* =========================
   TOOLS GRID (How to Measure)
   ========================= */

.cpt-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cpt-tool-card {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cpt-tool-card:hover {
    border-color: #7e22ce;
    transform: translateY(-2px);
}

.cpt-tool-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.cpt-tool-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

@media (min-width: 768px) {
    .cpt-tools-grid {
        gap: 24px;
    }
}

/* =========================
   STEPS (How to Measure)
   ========================= */

.cpt-steps-block {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.cpt-steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cpt-step-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.cpt-step-item:hover {
    box-shadow: 0 8px 32px rgba(30, 60, 114, 0.12);
    transform: translateX(4px);
}

.cpt-step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cpt-step-content {
    flex: 1;
}

.cpt-step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.cpt-step-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.cpt-pro-tip {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #92400e;
    margin-top: 16px;
}

.cpt-pro-tip strong {
    color: #78350f;
}

.cpt-measurement-example,
.cpt-calculation-box {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #1e3a8a;
    margin-top: 16px;
}

.cpt-measurement-example p,
.cpt-calculation-box p {
    margin: 4px 0;
    font-size: 14px;
    color: #1e40af;
}

@media (min-width: 768px) {
    .cpt-step-item {
        padding: 40px 32px;
    }
    
    .cpt-step-number {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .cpt-step-content h3 {
        font-size: 22px;
    }
}

/* =========================
   MISTAKES GRID
   ========================= */

.cpt-mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cpt-mistake-card {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.cpt-mistake-card:hover {
    border-color: #ef4444;
    transform: translateY(-2px);
}

.cpt-mistake-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #991b1b;
    margin: 0 0 12px 0;
}

.cpt-mistake-card p {
    font-size: 15px;
    color: #7f1d1d;
    margin: 0;
    line-height: 1.6;
}

/* =========================
   TIPS SECTION
   ========================= */

.cpt-tips-section {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.cpt-tips-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cpt-tip-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cpt-tip-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.cpt-tip-item p {
    font-size: 16px;
    color: #065f46;
    margin: 0;
    line-height: 1.6;
}

.cpt-tip-item strong {
    color: #064e3b;
}

/* =========================
   MATERIAL CARDS (Which Material)
   ========================= */

.cpt-materials-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 50px;
}

.cpt-material-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cpt-material-card:hover {
    box-shadow: 0 12px 40px rgba(30, 60, 114, 0.15);
    transform: translateY(-4px);
}

.cpt-material-header {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: #ffffff;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.cpt-material-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpt-material-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.cpt-material-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cpt-material-badge.cpt-badge-premium {
    background: #fbbf24;
    color: #78350f;
}

.cpt-material-badge.cpt-badge-fireproof {
    background: #ef4444;
    color: #ffffff;
}

.cpt-material-badge.cpt-badge-performance {
    background: #10b981;
    color: #ffffff;
}

.cpt-material-body {
    padding: 32px 24px;
}

.cpt-material-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.cpt-material-specs {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.cpt-material-specs h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.cpt-material-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpt-material-specs li {
    font-size: 15px;
    color: #4b5563;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.cpt-material-specs li:last-child {
    border-bottom: none;
}

.cpt-pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.cpt-pros h4 {
    color: #065f46;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.cpt-cons h4 {
    color: #991b1b;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.cpt-pros ul,
.cpt-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpt-pros li,
.cpt-cons li {
    font-size: 14px;
    padding: 6px 0 6px 24px;
    position: relative;
}

.cpt-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.cpt-cons li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.cpt-material-price {
    text-align: center;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
}

.cpt-price-label {
    font-size: 14px;
    color: #6b7280;
    margin-right: 8px;
}

.cpt-price-value {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

@media (min-width: 1024px) {
    .cpt-materials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cpt-pros-cons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   COMPARISON TABLE
   ========================= */

.cpt-comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cpt-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.cpt-comparison-table thead {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: #ffffff;
}

.cpt-comparison-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.cpt-comparison-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.cpt-comparison-table tbody tr:hover {
    background: #f9fafb;
}

.cpt-comparison-table td:first-child {
    font-weight: 500;
}

@media (min-width: 768px) {
    .cpt-comparison-table {
        min-width: auto;
    }
    
    .cpt-comparison-table th,
    .cpt-comparison-table td {
        padding: 16px;
        font-size: 15px;
    }
}

/* =========================
   DECISION GUIDE
   ========================= */

.cpt-decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cpt-decision-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #93c5fd;
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.cpt-decision-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
}

.cpt-decision-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 16px 0;
}

.cpt-decision-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpt-decision-card li {
    font-size: 14px;
    color: #1e3a8a;
    padding: 6px 0 6px 20px;
    position: relative;
}

.cpt-decision-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

/* =========================
   THICKNESS GUIDE
   ========================= */

.cpt-thickness-guide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cpt-thickness-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.cpt-thickness-item:hover {
    border-color: #7e22ce;
    box-shadow: 0 4px 12px rgba(126, 34, 206, 0.1);
}

.cpt-thickness-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.cpt-thickness-item p {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* =========================
   PROJECTS GRID (Our Work)
   ========================= */

/* Showcase Section */
.cpt-showcase-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    padding: 80px 20px;
}

.cpt-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.cpt-showcase-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 60, 114, 0.08);
    box-shadow: 0 4px 24px rgba(30, 60, 114, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cpt-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cpt-showcase-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(30, 60, 114, 0.15);
    border-color: rgba(30, 60, 114, 0.15);
}

.cpt-showcase-item:hover::before {
    transform: scaleX(1);
}

.cpt-showcase-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cpt-showcase-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.cpt-showcase-item:hover .cpt-showcase-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    transform: scale(1.1) rotate(5deg);
}

.cpt-showcase-item:hover .cpt-showcase-icon::after {
    opacity: 1;
}

.cpt-showcase-icon svg {
    color: #1e40af;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.cpt-showcase-item:hover .cpt-showcase-icon svg {
    color: #ffffff;
    transform: scale(1.1);
}

.cpt-showcase-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.cpt-showcase-item:hover h3 {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cpt-showcase-item p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.cpt-showcase-item:hover p {
    color: #475569;
}

@media (min-width: 768px) {
    .cpt-showcase-section {
        padding: 100px 40px;
    }
    
    .cpt-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .cpt-showcase-item h3 {
        font-size: 20px;
    }
    
    .cpt-showcase-item p {
        font-size: 15px;
    }
}

/* Stats Section */
.cpt-stats-section {
    background: #fafbfc;
    padding: 50px 20px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.cpt-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.cpt-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.cpt-stat-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.cpt-stat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cpt-stat-card:hover .cpt-stat-icon {
    background: #1e3c72;
}

.cpt-stat-icon svg {
    color: #1e3c72;
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

.cpt-stat-card:hover .cpt-stat-icon svg {
    color: #ffffff;
}

.cpt-stat-content {
    flex: 1;
    min-width: 0;
}

.cpt-stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 2px;
}

.cpt-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    line-height: 1;
    letter-spacing: -0.02em;
}

.cpt-stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    line-height: 1;
}

.cpt-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .cpt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .cpt-stats-section {
        padding: 60px 40px;
    }
    
    .cpt-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .cpt-stat-card {
        padding: 24px 28px;
    }
}

/* =========================
   FILTER SECTION
   ========================= */

.cpt-filter-section {
    background: #ffffff;
    padding: 30px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.cpt-filter-container {
    text-align: center;
}

.cpt-filter-container h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.cpt-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cpt-filter-btn {
    padding: 10px 24px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cpt-filter-btn:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

.cpt-filter-btn.active {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    border-color: transparent;
    color: #ffffff;
}

@media (min-width: 768px) {
    .cpt-filter-section {
        padding: 40px;
    }
}

/* =========================
   PROJECT CARDS
   ========================= */

.cpt-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.cpt-project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cpt-project-card:hover {
    box-shadow: 0 12px 40px rgba(30, 60, 114, 0.15);
    transform: translateY(-8px);
    border-color: rgba(30, 60, 114, 0.2);
}

.cpt-project-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    flex-shrink: 0;
}

.cpt-project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.cpt-project-stage {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cpt-project-inprogress {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.cpt-project-inprogress .cpt-project-stage {
    background: rgba(59, 130, 246, 0.95);
    color: #ffffff;
    font-weight: 600;
}

.cpt-project-finishing {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.cpt-project-finishing .cpt-project-stage {
    background: rgba(251, 191, 36, 0.95);
    color: #ffffff;
    font-weight: 600;
}

.cpt-project-completed {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.cpt-project-completed .cpt-project-stage {
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
    font-weight: 600;
}

.cpt-project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpt-project-image:has(.cpt-project-thumbnail) .cpt-project-stage {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.cpt-no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #9ca3af;
}

.cpt-no-projects svg {
    margin: 0 auto 24px;
}

.cpt-no-projects h3 {
    font-size: 24px;
    color: #6b7280;
    margin: 0 0 12px 0;
}

.cpt-no-projects p {
    font-size: 16px;
    color: #9ca3af;
    margin: 0;
}

.cpt-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cpt-project-card:hover .cpt-project-overlay {
    opacity: 1;
}

.cpt-view-btn {
    padding: 14px 32px;
    background: #ffffff;
    color: #1e3c72;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cpt-view-btn:hover {
    background: linear-gradient(135deg, #7e22ce 0%, #9333ea 100%);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(126, 34, 206, 0.4);
}

.cpt-project-info {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cpt-project-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.cpt-project-location {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.cpt-project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.cpt-spec {
    padding: 6px 14px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.cpt-project-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.cpt-project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.cpt-meta-tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: #ffffff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.cpt-meta-date {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

@media (min-width: 640px) {
    .cpt-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cpt-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   TESTIMONIALS
   ========================= */

.cpt-testimonials-section {
    background: #ffffff;
    padding: 60px 20px;
}

.cpt-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.cpt-testimonial-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 32px 28px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cpt-testimonial-card:hover {
    border-color: #7e22ce;
    box-shadow: 0 8px 24px rgba(126, 34, 206, 0.1);
}

.cpt-testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.cpt-testimonial-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 20px 0;
}

.cpt-testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 4px;
}

.cpt-testimonial-author span {
    font-size: 14px;
    color: #6b7280;
}

@media (min-width: 768px) {
    .cpt-testimonials-section {
        padding: 80px 40px;
    }
    
    .cpt-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   PROCESS SECTION
   ========================= */

.cpt-process-section {
    background: #f9fafb;
    padding: 60px 20px;
}

.cpt-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.cpt-process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cpt-process-step:hover {
    border-color: #7e22ce;
    transform: scale(1.02);
}

.cpt-process-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpt-process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.cpt-process-step p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 640px) {
    .cpt-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cpt-process-section {
        padding: 80px 40px;
    }
    
    .cpt-process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================
   CONTACT METHODS
   ========================= */

.cpt-contact-methods-section {
    background: #ffffff;
    padding: 50px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.cpt-contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.cpt-contact-method-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cpt-contact-method-card:hover {
    border-color: #7e22ce;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(126, 34, 206, 0.1);
}

.cpt-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cpt-contact-method-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.cpt-contact-value {
    font-size: 18px;
    font-weight: 600;
    color: #7e22ce;
    margin: 0 0 12px 0;
}

.cpt-contact-value a {
    color: inherit;
    text-decoration: none;
}

.cpt-contact-value a:hover {
    text-decoration: underline;
}

.cpt-contact-hours {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .cpt-contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cpt-contact-methods-section {
        padding: 70px 40px;
    }
    
    .cpt-contact-methods-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================
   CONTACT FORM
   ========================= */

.cpt-contact-form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.cpt-form-column h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.cpt-form-column > p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 32px 0;
}

.cpt-contact-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.cpt-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cpt-form-group {
    margin-bottom: 20px;
}

.cpt-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.cpt-form-group input,
.cpt-form-group select,
.cpt-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cpt-form-group input:focus,
.cpt-form-group select:focus,
.cpt-form-group textarea:focus {
    outline: none;
    border-color: #7e22ce;
    box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.1);
}

.cpt-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Messages */
.cpt-form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cpt-form-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-left: 4px solid #047857;
}

.cpt-form-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-left: 4px solid #b91c1c;
}

.cpt-checkbox-group {
    margin-bottom: 20px;
}

.cpt-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cpt-checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.cpt-checkbox-label span {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.cpt-checkbox-label a {
    color: #7e22ce;
    text-decoration: none;
}

.cpt-checkbox-label a:hover {
    text-decoration: underline;
}

.cpt-submit-button {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cpt-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(126, 34, 206, 0.3);
}

@media (min-width: 640px) {
    .cpt-form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cpt-contact-form-container {
        grid-template-columns: 2fr 1fr;
    }
    
    .cpt-contact-form {
        padding: 40px;
    }
}

/* =========================
   INFO COLUMN (Contact)
   ========================= */

.cpt-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cpt-info-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.cpt-info-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px 0;
}

.cpt-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpt-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4b5563;
    padding: 10px 0;
}

.cpt-info-list svg {
    color: #10b981;
    flex-shrink: 0;
}

.cpt-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpt-quick-links li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.cpt-quick-links li:last-child {
    border-bottom: none;
}

.cpt-quick-links a {
    color: #7e22ce;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cpt-quick-links a:hover {
    color: #1e3c72;
}

.cpt-emergency-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fecaca;
}

.cpt-emergency-box h3 {
    color: #991b1b;
}

.cpt-emergency-box p {
    font-size: 14px;
    color: #7f1d1d;
    margin: 0 0 12px 0;
}

.cpt-emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cpt-emergency-phone:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

.cpt-emergency-note {
    font-size: 12px;
    color: #991b1b;
    margin: 8px 0 0 0;
    text-align: center;
}

/* =========================
   MAP SECTION
   ========================= */

.cpt-map-section {
    background: #ffffff;
    padding: 60px 20px;
}

.cpt-map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 9;
}

.cpt-map-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3);
}

.cpt-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 60, 114, 0.95) 0%, rgba(30, 60, 114, 0.85) 60%, transparent 100%);
    padding: 40px 32px 32px;
    pointer-events: none;
}

.cpt-map-info {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.cpt-map-info svg {
    color: #ffffff;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.cpt-map-address {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cpt-map-link {
    display: inline-block;
    padding: 12px 28px;
    background: #ffffff;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cpt-map-link:hover {
    background: #7e22ce;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 34, 206, 0.4);
}

@media (min-width: 768px) {
    .cpt-map-section {
        padding: 80px 40px;
    }
    
    .cpt-map-address {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .cpt-map-overlay {
        padding: 30px 20px 24px;
    }
    
    .cpt-map-info svg {
        width: 36px;
        height: 36px;
    }
    
    .cpt-map-address {
        font-size: 16px;
    }
    
    .cpt-map-link {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* =========================
   FAQ SECTION
   ========================= */

.cpt-faq-section {
    background: #f9fafb;
    padding: 60px 20px;
}

.cpt-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.cpt-faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.cpt-faq-item.active {
    border-color: #7e22ce;
}

.cpt-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cpt-faq-question:hover {
    background: #f9fafb;
}

.cpt-faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding-right: 20px;
}

.cpt-faq-icon {
    font-size: 24px;
    color: #7e22ce;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cpt-faq-item.active .cpt-faq-icon {
    transform: rotate(45deg);
}

.cpt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cpt-faq-item.active .cpt-faq-answer {
    max-height: 500px;
}

.cpt-faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .cpt-faq-section {
        padding: 80px 40px;
    }
    
    .cpt-faq-question h3 {
        font-size: 18px;
    }
}

/* =========================
   CTA SECTION
   ========================= */

.cpt-cta-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    color: #ffffff;
    padding: 70px 20px;
    text-align: center;
}

.cpt-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cpt-cta-inner h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.cpt-cta-inner > p {
    font-size: 17px;
    opacity: 0.95;
    margin: 0 0 32px 0;
}

.cpt-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #ffffff;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 8px 16px;
}

.cpt-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cpt-cta-button-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cpt-cta-button-secondary:hover {
    background: #ffffff;
    color: #1e3c72;
}

.cpt-cta-help {
    font-size: 14px;
    margin-top: 24px;
    opacity: 0.9;
}

.cpt-cta-help a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.cpt-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .cpt-cta-section {
        padding: 90px 40px;
    }
    
    .cpt-cta-inner h2 {
        font-size: 38px;
    }
    
    .cpt-cta-inner > p {
        font-size: 19px;
    }
}

/* =========================
   RESPONSIVE UTILITIES
   ========================= */

@media (max-width: 639px) {
    /* Stack elements on mobile */
    .cpt-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    /* Reduce padding on small screens */
    .cpt-content-block {
        padding: 32px 20px;
    }
    
    /* Full width buttons on mobile */
    .cpt-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Print styles */
@media print {
    .cpt-hero,
    .cpt-cta-section {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .cpt-filter-section {
        display: none;
    }
}
