/* ===================================================
   PROCESS PULSE — PREMIUM UPGRADE CSS
   GEO-Optimised Sections: Trust Bar, Value Strip,
   About/Authority, Testimonials, FAQ, Contact,
   Nav CTA, Footer Enhancements
   =================================================== */

/* ============ PREMIUM ROOT OVERRIDES ============ */
:root {
    --premium-blue: #0050a0;
    --premium-gold: #c8930a;
    --premium-dark: #0d1117;
    --premium-surface: #f4f6f8;
    --premium-border: rgba(0, 80, 160, 0.12);
    --premium-shadow: 0 8px 40px rgba(0, 80, 160, 0.1);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
}

/* ============ NAV CTA BUTTON ============ */
.nav-cta-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 0.65rem 1.4rem !important;
    background: linear-gradient(135deg, #FF6B35, #FFD23F) !important;
    color: #1a1a2e !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    text-decoration: none !important;
}

.nav-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5) !important;
    background: linear-gradient(135deg, #e55a25, #e8bb30) !important;
}

.nav-cta-btn i {
    font-size: 0.85rem !important;
}

/* Active underline doesn't apply to CTA button */
.nav-cta-btn::after {
    display: none !important;
}

/* ============ TRUST BAR ============ */
.trust-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.92), rgba(0, 80, 160, 0.85));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 210, 63, 0.2);
    overflow: hidden;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 0.55rem 2rem;
    flex-wrap: wrap;
}

.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.trust-bar span i {
    color: #FFD23F;
    font-size: 0.75rem;
}

.trust-bar span:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: rgba(255, 210, 63, 0.5);
    border-radius: 50%;
    margin-left: 2.5rem;
    margin-right: -1rem;
}

/* Hero pushes below trust bar + nav */
.parallax-hero {
    padding-top: 200px !important;
}

/* ============ VALUE STRIP ============ */
.value-strip {
    padding: 2.5rem 0 !important;
    background: linear-gradient(135deg, #0d1117 0%, #1a2535 100%);
    border-top: 3px solid #FF6B35;
    border-bottom: 3px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.value-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.value-item:last-child {
    border-right: none;
}

.value-item:hover {
    background: rgba(255, 107, 53, 0.06);
}

.value-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 210, 63, 0.15));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.1rem;
    color: #FFD23F;
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.value-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.value-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* ============ ABOUT / AUTHORITY SECTION ============ */
.about-authority {
    padding: 8rem 0;
    background: #f4f6f8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-content .section-badge {
    margin-bottom: 1.2rem;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.about-lead {
    font-size: 1.1rem;
    color: #4a4a5e;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    border-left: 3px solid #FF6B35;
    padding-left: 1.2rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.about-point:hover {
    transform: translateX(6px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08);
}

.about-point > i {
    font-size: 1.4rem;
    color: #FF6B35;
    margin-top: 2px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 210, 63, 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-point > div > strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.3rem;
}

.about-point > div > p {
    font-size: 0.92rem;
    color: #5a5a6e;
    line-height: 1.6;
    margin: 0;
}

/* Certifications panel */
.about-certifications {
    position: sticky;
    top: 120px;
}

.about-certifications h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.8rem 1rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: default;
}

.cert-badge:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.12);
}

.cert-badge i {
    font-size: 2rem;
    background: linear-gradient(135deg, #FF6B35, #FFD23F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cert-badge span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: 0.02em;
}

.cert-badge p {
    font-size: 0.78rem;
    color: #6a6a7e;
    line-height: 1.3;
    margin: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FFD23F, #FF6B35);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 6rem;
    line-height: 1;
    font-family: 'Playfair Display', Georgia, serif;
    color: rgba(255, 107, 53, 0.1);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.2rem;
}

.testimonial-stars i {
    color: #FFD23F;
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(255, 210, 63, 0.5));
}

.testimonial-card > p {
    font-size: 1rem;
    color: #3a3a4e;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B35, #FFD23F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.2rem;
    color: #ffffff;
}

.testimonial-author cite {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    font-style: normal;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #6a6a7e;
}

/* ============ FAQ SECTION ============ */
.faq-section {
    padding: 8rem 0;
    background: #f4f6f8;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
}

.faq-item.open {
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.6rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.03);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 0.9rem;
    color: #FF6B35;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer[aria-hidden="false"] {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 2rem 1.8rem;
    font-size: 0.97rem;
    color: #4a4a5e;
    line-height: 1.8;
    margin: 0;
}

.faq-answer p strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 8rem 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-panel {
    background: linear-gradient(135deg, #0d1117, #1a2535);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    color: #ffffff;
    position: sticky;
    top: 120px;
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.contact-info-panel > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-details-list li > i {
    width: 38px;
    height: 38px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #FFD23F;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-details-list li > div > strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.contact-details-list li > div > span,
.contact-details-list li > div > a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}

.contact-details-list li > div > a:hover {
    color: #FFD23F;
}

/* Contact Form */
.contact-form-panel {
    background: #f4f6f8;
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3a3a4e;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23FF6B35'%3E%3Cpath d='M5 7l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
}

.form-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: #8a8a9e;
    margin-top: -0.5rem;
}

/* ============ FOOTER CERT BADGES ============ */
.footer-cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.foot-badge {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #FFD23F;
    letter-spacing: 0.05em;
}

/* ============ CTA CONTACT INFO ============ */
.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-contact-item i {
    color: #FFD23F;
}

/* ============ CTA SECTION BACKGROUND OVERRIDE ============ */
.modern-cta {
    background: linear-gradient(135deg, #0d1117 0%, #1a2535 60%, #0d1117 100%);
}

.cta-content-modern h2 {
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.cta-content-modern p {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    font-weight: 700;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-3px) !important;
}

/* ============ PROJECTS SECTION BACKGROUND ============ */
.projects-portfolio {
    background: #ffffff;
}

/* ============ PROJECT CARDS FIXES ============ */
.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    height: 220px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: #fff;
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: rgba(255, 107, 53, 0.85);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.project-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #fff;
}

.project-info p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.project-meta span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 210, 63, 0.9);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.8rem;
    transition: background 0.2s;
}

.view-project-btn:hover {
    background: #FFD23F;
}

.project-details {
    padding: 1.3rem 1.5rem;
    background: #fff;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-top: none;
}

.project-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.7rem;
}

.project-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.project-specs li {
    font-size: 0.82rem;
    color: #5a5a6e;
    display: flex;
    align-items: center;
    gap: 7px;
}

.project-specs li i {
    color: #FF6B35;
    font-size: 0.7rem;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-project {
    grid-column: span 1;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* ============ BTN-PRIMARY FIX ============ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #FF6B35, #FFD23F);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.text-center {
    text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .value-item:nth-child(3) {
        border-right: none;
    }

    .about-grid {
        gap: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-certifications,
    .contact-info-panel {
        position: static;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-bar-inner {
        gap: 1rem;
        justify-content: flex-start;
        padding: 0.6rem 1.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .trust-bar-inner::-webkit-scrollbar {
        display: none;
    }

    .trust-bar span:not(:last-child)::after {
        display: none;
    }

    .parallax-hero {
        padding-top: 180px !important;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .testimonials-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-panel,
    .contact-info-panel {
        padding: 2rem 1.5rem;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-question {
        padding: 1.3rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .value-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-content h2 {
        font-size: 1.9rem;
        letter-spacing: -0.5px;
    }
}
