/* ==========================================================================
   PRANGON SERVICES PAGE STYLES
   Palette: Deep Navy (#0F2C59) & Dynamic Orange (#FF6B00)
   ========================================================================== */

/* AutoCAD Blueprint Texture Background */
.autocad-bg {
    background-color: #f8fafc;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Home Matching Reveal Effect (Blur-to-Clear Fade Up) */
.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
}

.reveal.active {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Page Banner */
.page-banner {
    padding: 130px 0 50px;
    text-align: center;
}

.page-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-navy, #0f172a);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 15px;
    color: var(--text-muted, #64748b);
    max-width: 580px;
    margin: 0 auto;
}

/* Core Services Grid Section */
.services-list-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm, 0 4px 6px -1px rgba(0,0,0,0.03));
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md, 0 10px 25px rgba(0,0,0,0.05));
    border-color: var(--accent-orange, #e65100);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--primary-navy, #0f172a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    border: 1px solid #dbeafe;
}

.service-icon-box.icon-orange {
    background: #fff7ed;
    color: var(--accent-orange, #e65100);
    border-color: #ffedd5;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy, #0f172a);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy, #0f172a);
    padding-top: 14px;
    border-top: 1px dashed var(--border-color, #e2e8f0);
    list-style: none;
    padding-left: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* NEW: Structural Audit Standards Strip Styling */
.audit-standards-strip {
    padding: 70px 0;
    margin-bottom: 20px;
}

.audit-standards-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm, 0 4px 6px -1px rgba(0,0,0,0.03));
}

.standards-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy, #0f172a);
    margin: 8px 0;
}

.standards-header p {
    font-size: 14px;
    color: var(--text-muted, #64748b);
    margin: 0 0 35px 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.standard-item {
    background: #f8fafc;
    border: 1px dashed var(--border-color, #e2e8f0);
    padding: 20px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.standard-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-orange, #e65100);
}

.standard-item i {
    font-size: 28px;
    margin-bottom: 12px;
}

.standard-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-navy, #0f172a);
    margin: 0 0 6px 0;
}

.standard-item p {
    font-size: 12px;
    color: var(--text-muted, #64748b);
    margin: 0;
    line-height: 1.5;
}

/* How It Works Process Section */
.process-section {
    padding: 80px 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.step-item {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    padding: 28px;
    border-radius: 18px;
    position: relative;
    box-shadow: var(--shadow-sm, 0 4px 6px -1px rgba(0,0,0,0.03));
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-orange, #e65100);
    opacity: 0.8;
    margin-bottom: 12px;
}

.step-item h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-navy, #0f172a);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    line-height: 1.5;
}

/* NEW: Instant Service Quick Booking Banner */
.service-booking-section {
    padding: 60px 0;
}

.service-booking-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 44px;
    color: #ffffff;
}

.booking-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 8px 0;
}

.booking-text p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 24px;
}

.service-quick-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr auto;
    gap: 14px;
}

.service-quick-form input,
.service-quick-form select {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

/* Service Video Showcase Section */
.service-video-section {
    padding: 80px 0;
    background: #ffffff;
}

.video-wrapper-card {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: var(--shadow-md, 0 10px 25px rgba(0,0,0,0.05));
    background: #000000;
    margin-top: 40px;
}

.video-wrapper-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Office Location & Map Section */
.location-section {
    padding: 80px 0 100px;
}

.location-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    box-shadow: var(--shadow-md, 0 10px 25px rgba(0,0,0,0.05));
}

.location-info {
    padding: 40px;
}

.location-subtitle {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-navy, #0f172a);
    display: block;
    margin-bottom: 8px;
}

.location-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy, #0f172a);
    margin-bottom: 10px;
}

.location-address {
    font-size: 14px;
    color: var(--text-muted, #64748b);
    margin-bottom: 28px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.c-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.c-item i {
    font-size: 18px;
    color: var(--accent-orange, #e65100);
    margin-top: 3px;
}

.c-item strong {
    display: block;
    font-size: 13px;
    color: var(--primary-navy, #0f172a);
}

.c-item span {
    font-size: 13px;
    color: var(--text-muted, #64748b);
}

.location-map {
    width: 100%;
    min-height: 380px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-quick-form .form-grid {
        grid-template-columns: 1fr;
    }
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .location-card {
        grid-template-columns: 1fr;
    }
    .location-map {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .standards-grid {
        grid-template-columns: 1fr;
    }
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
    .location-info {
        padding: 24px;
    }
}