/* Jilani Interiors — premium corporate design layer */
:root {
    --primary: #ff5b35;
    --primary-hover: #e94720;
    --primary-soft: #fff1ec;
    --dark: #101521;
    --dark-light: #191f2c;
    --text-dark: #202838;
    --text-muted: #667085;
    --light: #f7f8fa;
    --border: #e5e8ee;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 8px 24px rgba(16, 21, 33, 0.06);
    --shadow-md: 0 18px 48px rgba(16, 21, 33, 0.09);
    --shadow-lg: 0 30px 80px rgba(16, 21, 33, 0.14);
}

html {
    scroll-padding-top: 92px;
}

body {
    color: var(--text-dark);
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: #fff;
    background: var(--primary);
}

.container {
    max-width: 1280px;
    padding-inline: 32px;
}

.section-padding {
    padding-block: clamp(78px, 8vw, 118px);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-header h2,
.about-content h2,
.turnkey-content h2,
.cta-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-header p {
    max-width: 640px;
    margin: 14px auto 0;
    color: var(--text-muted);
    font-size: 17px;
}

.badge {
    margin-bottom: 16px;
    padding: 7px 12px;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(255, 91, 53, 0.15);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.btn,
.form-btn,
.tab-btn {
    min-height: 48px;
    border-radius: 10px;
    font-weight: 700;
}

.btn {
    padding-inline: 24px;
}

.btn-primary,
.form-btn {
    background: linear-gradient(135deg, #ff6b43, var(--primary));
    box-shadow: 0 12px 26px rgba(255, 91, 53, 0.22);
}

.btn-primary:hover,
.form-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    box-shadow: 0 16px 34px rgba(255, 91, 53, 0.3);
    transform: translateY(-2px);
}

/* Header */
header {
    z-index: 1000;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(229, 232, 238, 0.8);
    box-shadow: 0 6px 26px rgba(16, 21, 33, 0.05) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar {
    min-height: 86px;
    height: auto;
}

.logo-img {
    height: 48px;
    max-width: 190px;
    object-fit: contain;
}

.nav-links {
    gap: clamp(18px, 2vw, 32px);
}

.nav-links a {
    position: relative;
    padding: 31px 0 27px;
    color: #3a4353;
    font-size: 14px;
    font-weight: 650;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    content: '';
    background: var(--primary);
    border-radius: 99px;
    transform: scaleX(0);
    transition: transform .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.btn-whatsapp {
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 13px;
}

header .btn-whatsapp,
header .btn-whatsapp.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2dde70, #20bd5a);
    border: 1px solid rgba(18, 157, 72, .2);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .25);
}

header .btn-whatsapp:hover,
header .btn-whatsapp.btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #25d366, #159447);
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(37, 211, 102, .35);
    transform: translateY(-2px);
}

header .btn-whatsapp svg {
    flex: 0 0 auto;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.08));
}

/* Hero system */
.hero {
    min-height: auto;
    padding-block: clamp(64px, 8vw, 110px);
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 91, 53, .12), transparent 30%),
        linear-gradient(135deg, #fff 0%, #f7f8fa 100%) !important;
}

.hero-grid,
.hero-home-grid,
.hero-services-grid,
.hero-about-grid {
    gap: clamp(48px, 7vw, 90px);
    align-items: center;
}

.hero-content h1,
.hero-portfolio-card h1,
.hero-testimonials-card h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.hero-content p,
.hero-portfolio-card p,
.hero-testimonials-card p {
    max-width: 650px;
    color: var(--text-muted);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.75;
}

.hero-ctas {
    margin-top: 32px;
    gap: 14px;
}

.hero-image,
.hhi-main,
.hsi-main,
.hai-bg,
.hai-fg,
.why-different-media img,
.turnkey-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hhi-overlap,
.hsi-overlap {
    border: 7px solid #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.hhi-glass-badge {
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.hero-portfolio,
.hero-testimonials {
    min-height: 560px;
}

.hero-portfolio-card,
.hero-testimonials-card {
    max-width: 760px;
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

/* Cards and content surfaces */
.service-card,
.service-card-premium,
.testimonial-card,
.trust-card,
.why-reason-card,
.contact-info-card,
.reach-out-card,
.signature-card,
.mv-card,
.stat-card-about {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover,
.service-card-premium:hover,
.testimonial-card:hover,
.trust-card:hover,
.why-reason-card:hover,
.contact-info-card:hover,
.reach-out-card:hover,
.signature-card:hover,
.mv-card:hover,
.stat-card-about:hover {
    border-color: rgba(255, 91, 53, .28);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.service-card,
.trust-card,
.why-reason-card,
.reach-out-card {
    padding: 32px;
}

.service-icon,
.scp-icon,
.trust-icon,
.why-reason-icon,
.cic-icon,
.roc-icon,
.step-icon-box,
.tf-icon {
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(255, 91, 53, .12);
}

.services-grid,
.services-grid-premium,
.trust-grid,
.why-reasons-grid,
.reach-out-grid {
    gap: 24px;
}

.portfolio-item,
.showcase-item,
.glimpse-item,
.transform-card,
.transformed-item,
.sig-img-wrapper {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.portfolio-item img,
.showcase-img-box img,
.glimpse-item img,
.transform-img-box img,
.transformed-item img {
    transition: transform .65s cubic-bezier(.2,.7,.2,1);
}

.portfolio-item:hover img,
.showcase-item:hover img,
.glimpse-item:hover img,
.transform-card:hover img,
.transformed-item:hover img {
    transform: scale(1.06);
}

.stats-bar {
    position: relative;
    z-index: 2;
    background: #fff;
    border-block: 1px solid var(--border);
    box-shadow: 0 16px 36px rgba(16,21,33,.05);
}

.stat-item {
    padding-block: 28px;
}

.stat-num {
    letter-spacing: -0.035em;
}

.process-steps {
    padding: 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-card {
    min-width: 0;
}

.testimonial-card {
    padding: 34px;
    background: #fff;
}

.quote-mark {
    color: rgba(255, 91, 53, .22);
}

.showcase-tabs {
    gap: 10px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.tab-btn {
    padding: 10px 18px;
    color: var(--text-muted);
    background: transparent;
    border: 0;
}

.tab-btn.active,
.tab-btn:hover {
    color: #fff;
    background: var(--primary);
}

.partners-grid {
    gap: 18px;
}

.partner-card {
    min-height: 112px;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

/* Forms */
.contact-form-box,
.contact-office-box,
.review-form-card {
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-input,
.review-form-card .form-input {
    min-height: 52px;
    padding: 14px 16px;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid #d9dee7;
    border-radius: 10px;
}

textarea.form-input {
    min-height: 130px;
    resize: vertical;
}

.form-input:focus,
.review-form-card .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 91, 53, .1);
}

.contact-map-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

/* CTA and footer */
.cta-section {
    padding: 24px 0 0;
    background: #fff;
}

.cta-banner {
    min-height: 190px;
    padding: clamp(34px, 5vw, 58px) !important;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(255, 91, 53, .98), rgba(255, 105, 66, .92)),
        var(--primary) !important;
    border: 0 !important;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 55px rgba(255, 91, 53, .23);
}

.cta-text h2 {
    color: #fff !important;
}

.cta-btn {
    color: var(--dark) !important;
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 28px rgba(16,21,33,.14);
}

.cta-btn:hover {
    color: var(--primary) !important;
    transform: translateY(-3px);
}

footer {
    margin-top: 0;
    padding: 74px 0 26px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,91,53,.12), transparent 25%),
        #0e131d;
    border-top: 0;
}

.footer-grid {
    gap: 54px;
    margin-bottom: 52px;
}

.footer-col h3 {
    margin-bottom: 22px;
    font-size: 14px;
    letter-spacing: 1.2px;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a:hover {
    padding-left: 5px;
    color: var(--primary);
}

.social-icon {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
}

/* Legal pages */
.legal-hero {
    padding-block: clamp(70px, 9vw, 120px);
    background:
        radial-gradient(circle at 88% 15%, rgba(255,91,53,.14), transparent 28%),
        linear-gradient(135deg, #fff, #f7f8fa);
}

.legal-content {
    padding: clamp(28px, 5vw, 64px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Tablet */
@media (max-width: 1100px) {
    .navbar {
        min-height: 78px;
    }

    .logo-img {
        height: 43px;
    }

    .nav-links {
        gap: 17px;
    }

    .nav-links a {
        font-size: 13px;
    }

    #btn-whatsapp {
        display: none;
    }

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

/* Mobile navigation and layouts */
@media (max-width: 900px) {
    .container {
        padding-inline: 22px;
    }

    .navbar {
        min-height: 74px;
    }

    .mobile-toggle {
        z-index: 1002;
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        padding: 11px;
        background: var(--light);
        border: 1px solid var(--border);
        border-radius: 10px;
    }

    .nav-links.active {
        top: 74px;
        max-height: calc(100vh - 74px);
        padding: 18px 22px 28px;
        overflow-y: auto;
        background: rgba(255,255,255,.98);
        border-top: 1px solid var(--border);
        box-shadow: 0 24px 50px rgba(16,21,33,.14);
        gap: 3px;
    }

    .nav-links.active li a {
        padding: 13px 4px;
        font-size: 15px;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-whatsapp-nav {
        margin-top: 12px !important;
    }

    .mobile-whatsapp-nav a {
        color: #fff !important;
    }

    .hero {
        padding-block: 62px 72px;
    }

    .hero-grid,
    .hero-home-grid,
    .hero-services-grid,
    .hero-about-grid,
    .about-grid,
    .about-intro-grid,
    .why-different-grid,
    .turnkey-grid,
    .contact-grid-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-content p {
        margin-inline: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-home-images,
    .hero-services-images,
    .hero-about-images {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .services-grid,
    .services-grid-premium,
    .signature-grid,
    .showcase-grid,
    .trust-grid,
    .why-reasons-grid,
    .transform-grid,
    .reach-out-grid,
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-steps {
        padding: 28px;
    }

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

@media (max-width: 640px) {
    .container {
        padding-inline: 18px;
    }

    .section-padding {
        padding-block: 68px;
    }

    .logo-img {
        height: 39px;
        max-width: 158px;
    }

    .hero-content h1,
    .hero-portfolio-card h1,
    .hero-testimonials-card h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .hero-content p,
    .hero-portfolio-card p,
    .hero-testimonials-card p {
        font-size: 16px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-image,
    .hhi-main,
    .hsi-main {
        min-height: 320px;
        object-fit: cover;
    }

    .hero-portfolio,
    .hero-testimonials {
        min-height: 500px;
        padding: 34px 0;
    }

    .hero-portfolio-card,
    .hero-testimonials-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .services-grid,
    .services-grid-premium,
    .signature-grid,
    .showcase-grid,
    .trust-grid,
    .why-reasons-grid,
    .transform-grid,
    .reach-out-grid,
    .contact-info-grid,
    .stats-grid-about,
    .glimpse-grid,
    .transformed-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .trust-card,
    .why-reason-card,
    .reach-out-card,
    .testimonial-card {
        padding: 26px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 22px 10px;
        border-right: 0 !important;
    }

    .process-steps {
        padding: 24px;
    }

    .step-card {
        align-items: flex-start;
    }

    .showcase-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin-inline: -18px;
        padding-inline: 18px;
        overflow-x: auto;
        border-inline: 0;
        border-radius: 0;
        scrollbar-width: none;
    }

    .showcase-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .contact-form-box,
    .contact-office-box,
    .review-form-card,
    .legal-content {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .contact-form-box .form-group {
        flex-direction: column;
    }

    .cta-section {
        padding-top: 12px;
    }

    .cta-banner {
        min-height: 0;
        padding: 36px 22px !important;
        border-radius: 20px;
    }

    .cta-banner .btn {
        width: 100%;
    }

    footer {
        margin-top: 0;
        padding-top: 58px;
    }

    .footer-grid {
        gap: 38px;
    }

    .footer-bottom,
    .footer-meta-links {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}

/* Final testimonial form backdrop (kept last to beat shared section rules) */
body .review-submit-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(9,14,23,.96), rgba(16,23,35,.88) 55%, rgba(42,28,31,.82)),
        url('assets/WhatsApp Image 2026-06-24 at 14.56.05.jpeg') center / cover no-repeat !important;
}

body .review-submit-section::before {
    position: absolute;
    z-index: -1;
    top: -130px;
    right: -80px;
    width: 390px;
    height: 390px;
    content: '';
    background: radial-gradient(circle, rgba(255,121,80,.52) 2px, transparent 3px);
    background-size: 19px 19px;
    border: 42px solid rgba(255,91,53,.1);
    border-radius: 50%;
    opacity: .72;
}

body .review-submit-section::after {
    position: absolute;
    z-index: -1;
    bottom: -125px;
    left: -95px;
    width: 320px;
    height: 320px;
    content: '';
    background: linear-gradient(135deg, rgba(255,91,53,.32), transparent 65%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 54px;
    transform: rotate(28deg);
}

body .review-submit-section .container {
    position: relative;
    z-index: 1;
}

body .review-submit-section .section-header h2 {
    color: #fff !important;
    text-shadow: 0 5px 24px rgba(0,0,0,.28);
}

body .review-submit-section .section-header p {
    color: rgba(255,255,255,.72) !important;
}

body .review-submit-section .review-form-card {
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.38);
    box-shadow: 0 30px 85px rgba(0,0,0,.4);
    backdrop-filter: blur(16px);
}

/* Contact form section: dark visual break before the white section below */
body .contact-main {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(9,14,23,.96), rgba(17,24,36,.9) 56%, rgba(48,29,31,.83)),
        url('assets/WhatsApp Image 2026-06-24 at 14.56.08 (2).jpeg') center / cover no-repeat !important;
}

body .contact-main::before {
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -90px;
    width: 420px;
    height: 420px;
    content: '';
    background: radial-gradient(circle, rgba(255,112,72,.48) 2px, transparent 3px);
    background-size: 19px 19px;
    border: 48px solid rgba(255,91,53,.09);
    border-radius: 50%;
    opacity: .66;
}

body .contact-main::after {
    position: absolute;
    z-index: -1;
    bottom: -150px;
    left: -100px;
    width: 340px;
    height: 340px;
    content: '';
    background: linear-gradient(135deg, rgba(255,91,53,.34), transparent 66%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 56px;
    transform: rotate(30deg);
}

body .contact-main .container {
    position: relative;
    z-index: 1;
}

body .contact-main .contact-form-box,
body .contact-main .contact-office-box {
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 30px 80px rgba(0,0,0,.34);
    backdrop-filter: blur(15px);
}

body .contact-main .contact-map-wrapper {
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(16,21,33,.12);
}

body .contact-main .whatsapp-form-btn {
    color: #fff;
    background: linear-gradient(135deg, #2dde70, #20bd5a);
    border: 0;
    box-shadow: 0 14px 30px rgba(37,211,102,.28);
}

body .contact-main .whatsapp-form-btn:hover {
    background: linear-gradient(135deg, #25d366, #159447);
    box-shadow: 0 18px 38px rgba(37,211,102,.36);
}

/* Contact information cards: independent, spacious bridge section */
body .contact-info-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 78px;
    background:
        radial-gradient(circle at 88% 22%, rgba(255,91,53,.11), transparent 23%),
        linear-gradient(135deg, #f6f7f9 0%, #fff 55%, #fff3ee 100%);
    border-block: 1px solid var(--border);
}

body .contact-info-section::before {
    position: absolute;
    top: -70px;
    right: -50px;
    width: 220px;
    height: 220px;
    content: '';
    background: radial-gradient(circle, rgba(255,91,53,.28) 2px, transparent 3px);
    background-size: 17px 17px;
    border-radius: 50%;
    opacity: .55;
}

body .contact-info-section .container {
    position: relative;
    z-index: 1;
}

body .contact-info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 0;
}

body .contact-info-card {
    min-width: 0;
    min-height: 170px;
    padding: 28px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(16,21,33,.08);
}

body .contact-info-card:hover {
    border-color: rgba(255,91,53,.34);
    box-shadow: 0 22px 48px rgba(16,21,33,.13);
    transform: translateY(-6px);
}

body .contact-info-card .cic-icon {
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(255,91,53,.15);
    border-radius: 14px;
}

body .contact-info-card .cic-text {
    min-width: 0;
}

body .contact-info-card .cic-text h4 {
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 17px;
}

body .contact-info-card .cic-text p {
    overflow-wrap: anywhere;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 640px) {
    body .review-submit-section {
        background:
            linear-gradient(rgba(9,14,23,.92), rgba(16,23,35,.9)),
            url('assets/WhatsApp Image 2026-06-24 at 14.56.05.jpeg') center / cover no-repeat !important;
    }

    body .review-submit-section::before {
        right: -210px;
        opacity: .45;
    }

    body .contact-main {
        background:
            linear-gradient(rgba(9,14,23,.92), rgba(17,24,36,.9)),
            url('assets/WhatsApp Image 2026-06-24 at 14.56.08 (2).jpeg') center / cover no-repeat !important;
    }

    body .contact-main::before {
        right: -230px;
        opacity: .4;
    }

    body .contact-info-section {
        padding: 54px 0;
    }

    body .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    body .contact-info-card {
        min-height: 0;
        padding: 22px;
        align-items: center;
        flex-direction: row;
        gap: 16px;
    }
}

@media (min-width: 641px) and (max-width: 1000px) {
    body .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   Testimonials page correction
   ========================================================= */
.hero-testimonials {
    min-height: 590px;
    display: flex;
    align-items: center;
    padding: 94px 0 108px;
    background:
        linear-gradient(90deg, rgba(8,13,22,.93), rgba(8,13,22,.72) 55%, rgba(8,13,22,.42)),
        url('assets/WhatsApp Image 2026-06-24 at 14.56.08 (3).jpeg') center 55% / cover no-repeat !important;
}

.hero-testimonials::after {
    z-index: 0;
    background:
        radial-gradient(circle at 80% 24%, rgba(255,91,53,.25), transparent 28%),
        linear-gradient(180deg, transparent 70%, rgba(8,13,22,.32));
    pointer-events: none;
}

.hero-testimonials .container {
    position: relative;
    z-index: 1;
}

.hero-testimonials-card {
    max-width: 760px;
    margin: 0;
    padding: 52px 54px;
    text-align: left;
    background: linear-gradient(135deg, rgba(15,21,32,.91), rgba(20,27,39,.74));
    border: 1px solid rgba(255,255,255,.16);
    border-left: 4px solid var(--primary);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
    backdrop-filter: blur(12px);
}

.hero-testimonials-card h1 {
    max-width: none;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.05;
}

.hero-testimonials-card p {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,.8) !important;
    font-size: 18px;
    line-height: 1.75;
}

.hero-testimonials-card .badge {
    color: #ffc2b1;
    background: rgba(255,91,53,.15);
    border-color: rgba(255,127,92,.34);
}

.testimonials-page-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(255,91,53,.09), transparent 20%),
        linear-gradient(135deg, #f6f7f9, #fff 52%, #fff4ef) !important;
}

.testimonials-page-section::before {
    position: absolute;
    top: 70px;
    right: -65px;
    width: 250px;
    height: 250px;
    content: '';
    background: radial-gradient(circle, rgba(255,91,53,.3) 2px, transparent 3px);
    background-size: 18px 18px;
    border-radius: 50%;
    opacity: .48;
}

.testimonials-page-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-page-section .showcase-tabs {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 46px !important;
}

#reviews-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-page-item {
    min-height: 310px;
    padding: 34px 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(16,21,33,.08);
}

.testimonial-page-item::after {
    position: absolute;
    top: 24px;
    right: 26px;
    width: 46px;
    height: 46px;
    content: '';
    background: radial-gradient(circle, rgba(255,91,53,.12), rgba(255,91,53,.03));
    border-radius: 50%;
}

.testimonial-page-item .quote-mark {
    height: 54px;
    color: var(--primary);
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: .9;
    opacity: .22;
}

.testimonial-page-item .testimonial-content {
    color: #3e4757;
    font-size: 16px;
    line-height: 1.75;
}

.testimonial-page-item .testimonial-footer {
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.testimonial-page-item .client-info h4 {
    color: var(--dark);
    font-size: 16px;
}

.testimonial-page-item .stars {
    padding: 7px 9px;
    background: #fff7e6;
    border-radius: 8px;
}

.testimonial-page-item .stars svg {
    width: 15px;
    height: 15px;
    color: #f5a623;
}

.review-submit-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(255,91,53,.2), transparent 24%),
        linear-gradient(135deg, #0d1420, #192231) !important;
    border: 0;
}

.review-submit-section .section-header h2 {
    color: #fff;
}

.review-submit-section .section-header p {
    color: rgba(255,255,255,.66) !important;
}

.review-submit-section .review-form-card {
    max-width: 800px;
    background: #fff;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.review-form-card .form-btn {
    width: 100%;
}

.star-rating-input {
    width: fit-content;
    padding: 6px 12px;
    background: #fff7e6;
    border-radius: 10px;
}

.star-rating-input span {
    color: #d8dde6;
}

.star-rating-input span.active,
.star-rating-input span:hover {
    color: #f5a623;
}

@media (max-width: 1024px) {
    #reviews-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-testimonials {
        min-height: 0;
        padding: 64px 0 72px;
        background:
            linear-gradient(rgba(8,13,22,.86), rgba(8,13,22,.82)),
            url('assets/WhatsApp Image 2026-06-24 at 14.56.08 (3).jpeg') center / cover no-repeat !important;
    }

    .hero-testimonials-card {
        padding: 32px 23px;
        text-align: center;
        border-left: 1px solid rgba(255,255,255,.16);
        border-top: 4px solid var(--primary);
    }

    .hero-testimonials-card h1 {
        font-size: 42px;
    }

    .hero-testimonials-card p {
        font-size: 15px;
    }

    #reviews-page-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-page-item {
        min-height: 0;
        padding: 28px 24px;
    }

    .testimonials-page-section .showcase-tabs {
        width: auto;
        margin-inline: -18px !important;
    }

    .review-submit-section .review-form-card {
        padding: 26px 20px;
    }

    .review-form-card form > div:first-child {
        flex-direction: column;
        gap: 12px !important;
    }
}

/* =========================================================
   Portfolio page correction
   ========================================================= */
.hero-portfolio {
    min-height: 610px;
    display: flex;
    align-items: center;
    padding: 96px 0 112px;
    background:
        linear-gradient(90deg, rgba(8, 13, 22, .92) 0%, rgba(8, 13, 22, .76) 48%, rgba(8, 13, 22, .44) 100%),
        url('assets/WhatsApp Image 2026-06-24 at 14.56.08.jpeg') center 52% / cover no-repeat !important;
}

.hero-portfolio::after {
    z-index: 0;
    background:
        radial-gradient(circle at 82% 20%, rgba(255,91,53,.27), transparent 30%),
        linear-gradient(180deg, transparent 70%, rgba(8,13,22,.34));
    pointer-events: none;
}

.hero-portfolio .container {
    position: relative;
    z-index: 1;
}

.hero-portfolio-card {
    max-width: 780px;
    margin: 0;
    padding: 52px 54px;
    text-align: left;
    background: linear-gradient(135deg, rgba(15,21,32,.9), rgba(20,27,39,.72));
    border: 1px solid rgba(255,255,255,.16);
    border-left: 4px solid var(--primary);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,.38);
    backdrop-filter: blur(12px);
}

.hero-portfolio-card h1 {
    max-width: none;
    margin-bottom: 20px;
    color: #fff !important;
    font-size: clamp(48px, 6vw, 74px);
}

.hero-portfolio-card p {
    max-width: 660px;
    color: rgba(255,255,255,.8) !important;
    font-size: 18px;
    line-height: 1.75;
}

.hero-portfolio-card .badge {
    color: #ffc2b1;
    background: rgba(255,91,53,.15);
    border-color: rgba(255,127,92,.34);
}

.hero-portfolio-card .hero-ctas {
    justify-content: flex-start !important;
    margin-top: 30px !important;
}

.hero-portfolio-card .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.4);
}

.hero-portfolio-card .btn-outline:hover {
    color: var(--dark);
    background: #fff;
    border-color: #fff;
}

/* Clean floating metrics instead of the split orange/dark strip */
.hero-portfolio + .stats-bar {
    margin-top: -58px !important;
    padding: 0 0 64px;
    background: linear-gradient(180deg, transparent 0 58px, #f6f7f9 58px 100%) !important;
    box-shadow: none;
}

.hero-portfolio + .stats-bar .stats-grid {
    position: relative;
    padding: 0 !important;
    overflow: hidden;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 20px !important;
    box-shadow: 0 24px 60px rgba(16,21,33,.14) !important;
}

.hero-portfolio + .stats-bar .stat-item {
    min-height: 152px;
    padding: 30px 25px !important;
    border-right: 1px solid var(--border) !important;
}

.hero-portfolio + .stats-bar .stat-item:last-child {
    border-right: 0 !important;
}

.hero-portfolio + .stats-bar .stat-num {
    color: var(--primary) !important;
    font-size: 30px !important;
}

.hero-portfolio + .stats-bar .stat-label {
    color: var(--dark) !important;
}

.hero-portfolio + .stats-bar .stat-desc {
    color: var(--text-muted) !important;
    opacity: 1;
}

.hero-portfolio + .stats-bar .stat-icon {
    flex: 0 0 auto;
    color: var(--primary);
    background: var(--primary-soft);
}

/* Partner and signature sections */
.partners {
    padding: 82px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,91,53,.08), transparent 22%),
        #fff !important;
}

.partners .section-header {
    margin-bottom: 38px !important;
}

.partner-card {
    height: 132px;
    filter: grayscale(.15);
}

.partner-card:hover {
    filter: grayscale(0);
}

.signature-projects {
    background: linear-gradient(135deg, #f7f8fa 0%, #fff4ef 100%) !important;
}

.signature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.signature-card {
    border-radius: 18px;
    overflow: hidden;
}

.sig-img-wrapper {
    height: 250px;
    border-radius: 0;
}

.sig-icon-badge {
    top: 226px;
    left: 28px;
    width: 48px;
    height: 48px;
    transform: none;
    border: 4px solid #fff;
}

.signature-card:hover .sig-icon-badge {
    transform: scale(1.06);
}

.sig-icon-badge svg {
    width: 21px;
    height: 21px;
}

.sig-text {
    min-height: 120px;
    padding: 30px 24px 24px;
    text-align: left;
}

.sig-text h3 {
    font-size: 19px;
}

.sig-text p {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.55;
}

/* Project images need enough room to be meaningful */
.project-showcase {
    padding-top: 104px;
    background:
        radial-gradient(circle at 90% 0%, rgba(255,91,53,.2), transparent 25%),
        linear-gradient(145deg, #0c121d, #151e2c) !important;
}

.showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.showcase-item {
    height: 245px;
    border-radius: 15px;
}

.showcase-overlay {
    padding: 22px;
    opacity: 1;
    background: linear-gradient(to top, rgba(10,15,24,.92), rgba(10,15,24,.08) 65%, transparent);
}

.showcase-info h4 {
    font-size: 16px;
    transform: none;
}

.showcase-info p {
    margin-top: 4px;
    font-size: 12px;
    transform: none;
}

@media (max-width: 1024px) {
    .hero-portfolio-card {
        max-width: 690px;
    }

    .signature-grid,
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-portfolio + .stats-bar .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-portfolio + .stats-bar .stat-item:nth-child(2) {
        border-right: 0 !important;
    }

    .hero-portfolio + .stats-bar .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 640px) {
    .hero-portfolio {
        min-height: 0;
        padding: 64px 0 94px;
        background:
            linear-gradient(rgba(8,13,22,.86), rgba(8,13,22,.8)),
            url('assets/WhatsApp Image 2026-06-24 at 14.56.08.jpeg') center / cover no-repeat !important;
    }

    .hero-portfolio-card {
        padding: 32px 23px;
        text-align: center;
        border-left: 1px solid rgba(255,255,255,.16);
        border-top: 4px solid var(--primary);
    }

    .hero-portfolio-card h1 {
        font-size: 42px;
    }

    .hero-portfolio-card p {
        font-size: 15px;
    }

    .hero-portfolio-card .hero-ctas {
        justify-content: center !important;
    }

    .hero-portfolio + .stats-bar {
        margin-top: -42px !important;
        padding-bottom: 54px;
        background: linear-gradient(180deg, transparent 0 42px, #f6f7f9 42px 100%) !important;
    }

    .hero-portfolio + .stats-bar .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-portfolio + .stats-bar .stat-item {
        min-height: 145px;
        padding: 22px 12px !important;
        border-right: 0 !important;
        text-align: center;
    }

    .hero-portfolio + .stats-bar .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border) !important;
    }

    .hero-portfolio + .stats-bar .stat-icon {
        margin-inline: auto;
    }

    .signature-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .sig-img-wrapper,
    .showcase-item {
        height: 230px;
    }

    .sig-icon-badge {
        top: 206px;
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .partner-card {
        height: 105px;
        padding: 16px;
    }
}

@media (max-width: 390px) {
    .container {
        padding-inline: 15px;
    }

    .logo-img {
        max-width: 142px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   High-impact visual layer: colors, backgrounds and graphics
   ========================================================= */
body {
    background:
        linear-gradient(rgba(16, 21, 33, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 21, 33, .018) 1px, transparent 1px),
        #fff;
    background-size: 42px 42px;
}

main,
body > section {
    position: relative;
}

/* Homepage and standard split heroes */
.hero:not(.hero-portfolio):not(.hero-testimonials) {
    isolation: isolate;
    color: #fff;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 91, 53, .48), transparent 24%),
        radial-gradient(circle at 8% 90%, rgba(255, 135, 73, .2), transparent 28%),
        linear-gradient(118deg, #0d1420 0%, #151d2b 58%, #28202a 100%) !important;
}

.hero:not(.hero-portfolio):not(.hero-testimonials)::before {
    position: absolute;
    z-index: -1;
    top: -160px;
    right: -90px;
    width: 430px;
    height: 430px;
    content: '';
    border: 70px solid rgba(255,255,255,.045);
    border-radius: 50%;
}

.hero:not(.hero-portfolio):not(.hero-testimonials)::after {
    position: absolute;
    z-index: -1;
    bottom: -105px;
    left: 44%;
    width: 210px;
    height: 210px;
    content: '';
    background: linear-gradient(135deg, rgba(255,91,53,.3), rgba(255,91,53,0));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 42px;
    transform: rotate(28deg);
}

.hero:not(.hero-portfolio):not(.hero-testimonials) .hero-content h1,
.hero:not(.hero-portfolio):not(.hero-testimonials) .hero-content h1 span,
.hero:not(.hero-portfolio):not(.hero-testimonials) .subheading {
    color: #fff !important;
}

.hero:not(.hero-portfolio):not(.hero-testimonials) .hero-content p {
    color: rgba(255,255,255,.73);
}

.hero:not(.hero-portfolio):not(.hero-testimonials) .badge {
    color: #ffb39f;
    background: rgba(255,91,53,.13);
    border-color: rgba(255,133,96,.3);
}

.hero:not(.hero-portfolio):not(.hero-testimonials) .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.35);
}

.hero:not(.hero-portfolio):not(.hero-testimonials) .btn-outline:hover {
    color: var(--dark);
    background: #fff;
}

.hero-image-wrapper::after,
.hero-home-images::after,
.hero-services-images::after,
.hero-about-images::after {
    position: absolute;
    z-index: -1;
    right: -24px;
    bottom: -24px;
    width: 72%;
    height: 68%;
    content: '';
    background: repeating-linear-gradient(-45deg, rgba(255,91,53,.95) 0 8px, transparent 8px 18px);
    border-radius: 28px;
    opacity: .28;
}

/* Full background heroes */
.hero-portfolio,
.hero-testimonials {
    position: relative;
    isolation: isolate;
}

.hero-portfolio::after,
.hero-testimonials::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background:
        linear-gradient(90deg, rgba(8,12,20,.88), rgba(8,12,20,.28)),
        radial-gradient(circle at 88% 20%, rgba(255,91,53,.32), transparent 30%);
}

/* Strong alternating section color rhythm */
.about,
.trust-section,
.premium-services,
.why-clients,
.testimonials,
.review-submit-section,
.contact-main,
.project-showcase,
.legal-page .section-padding {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(255,91,53,.08), transparent 20%),
        linear-gradient(135deg, #f7f8fb 0%, #fff 58%, #fff5f1 100%) !important;
}

.services,
.process,
.glimpse,
.turnkey,
.what-different,
.spaces-transform,
.why-reach-out,
.partners,
.signature-projects,
.transformed {
    position: relative;
    overflow: hidden;
    background-color: #fff !important;
}

.services::before,
.premium-services::before,
.trust-section::before,
.why-clients::before,
.project-showcase::before,
.review-submit-section::before {
    position: absolute;
    top: 54px;
    right: -72px;
    width: 240px;
    height: 240px;
    content: '';
    background:
        radial-gradient(circle, rgba(255,91,53,.32) 2px, transparent 3px);
    background-size: 18px 18px;
    border-radius: 50%;
    opacity: .55;
    pointer-events: none;
}

.process,
.turnkey,
.what-different {
    background:
        linear-gradient(120deg, #0e1521 0%, #171f2d 100%) !important;
    color: rgba(255,255,255,.75);
}

.process .section-header h2,
.process .section-header p,
.turnkey h2,
.turnkey h3,
.what-different h2,
.what-different h4 {
    color: #fff !important;
}

.process .section-header p,
.turnkey p,
.what-different p {
    color: rgba(255,255,255,.68) !important;
}

.process .process-steps {
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.1);
    box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.process .step-card h3,
.process .step-number {
    color: #fff;
}

.process .step-card p {
    color: rgba(255,255,255,.62);
}

.turnkey-image,
.why-different-media {
    position: relative;
}

.turnkey-image::before,
.why-different-media::before {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 110px;
    height: 110px;
    content: '';
    background: var(--primary);
    border-radius: 24px 4px 24px 4px;
    opacity: .9;
}

.turnkey-image img,
.why-different-media img {
    position: relative;
}

/* Colored top accents make card changes obvious */
.service-card,
.service-card-premium,
.trust-card,
.why-reason-card,
.reach-out-card,
.contact-info-card,
.testimonial-card,
.signature-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.96);
}

.service-card::before,
.service-card-premium::before,
.trust-card::before,
.why-reason-card::before,
.reach-out-card::before,
.contact-info-card::before,
.testimonial-card::before,
.signature-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: '';
    background: linear-gradient(90deg, var(--primary), #ff9a62, transparent 85%);
}

.service-card:nth-child(3n+2)::before,
.service-card-premium:nth-child(3n+2)::before,
.why-reason-card:nth-child(3n+2)::before {
    background: linear-gradient(90deg, #243b67, #6784b7, transparent 85%);
}

.service-card:nth-child(3n)::before,
.service-card-premium:nth-child(3n)::before,
.why-reason-card:nth-child(3n)::before {
    background: linear-gradient(90deg, #d99b31, #ffd27d, transparent 85%);
}

.service-card:nth-child(3n+2) .service-icon,
.service-card-premium:nth-child(3n+2) .scp-icon,
.why-reason-card:nth-child(3n+2) .why-reason-icon {
    color: #365785;
    background: #edf3fb;
}

.service-card:nth-child(3n) .service-icon,
.service-card-premium:nth-child(3n) .scp-icon,
.why-reason-card:nth-child(3n) .why-reason-icon {
    color: #b87816;
    background: #fff6df;
}

/* Portfolio/gallery becomes a dark editorial showcase */
.portfolio,
.project-showcase {
    background:
        radial-gradient(circle at 90% 0%, rgba(255,91,53,.2), transparent 26%),
        #101620 !important;
}

.portfolio .section-header h2,
.project-showcase .section-header h2,
.portfolio-header h2,
.portfolio .view-all {
    color: #fff;
}

.portfolio .section-header p,
.project-showcase .section-header p {
    color: rgba(255,255,255,.65);
}

.portfolio-item,
.showcase-item {
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 22px 48px rgba(0,0,0,.24);
}

.project-showcase .showcase-tabs {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
}

.project-showcase .tab-btn {
    color: rgba(255,255,255,.72);
}

.project-showcase .tab-btn.active,
.project-showcase .tab-btn:hover {
    color: #fff;
}

/* Stats: orange-to-dark corporate strip */
.stats-bar {
    color: #fff;
    background: linear-gradient(100deg, var(--primary) 0%, #ff754f 46%, #171e2a 46%) !important;
    border: 0;
}

.stats-bar .stat-num,
.stats-bar .stat-label,
.stats-bar .stat-desc {
    color: #fff !important;
}

.stats-bar .stat-desc {
    opacity: .72;
}

.stats-bar .stat-icon {
    color: #fff;
    background: rgba(255,255,255,.14);
}

/* CTA graphic overlay */
.cta-banner::after {
    position: absolute;
    right: 7%;
    bottom: -95px;
    width: 260px;
    height: 260px;
    content: '';
    border: 45px solid rgba(255,255,255,.09);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner .cta-text,
.cta-banner .cta-btn {
    position: relative;
    z-index: 2;
}

/* Mobile keeps graphics controlled */
@media (max-width: 900px) {
    .hero:not(.hero-portfolio):not(.hero-testimonials)::before {
        top: -130px;
        right: -160px;
        width: 340px;
        height: 340px;
        border-width: 55px;
    }

    .hero:not(.hero-portfolio):not(.hero-testimonials)::after {
        left: -70px;
        width: 160px;
        height: 160px;
    }

    .stats-bar {
        background: linear-gradient(145deg, var(--primary) 0%, #ff754f 50%, #171e2a 50%) !important;
    }
}

@media (max-width: 640px) {
    body {
        background-size: 30px 30px;
    }

    .hero:not(.hero-portfolio):not(.hero-testimonials) {
        background:
            radial-gradient(circle at 90% 12%, rgba(255,91,53,.34), transparent 25%),
            linear-gradient(150deg, #0d1420, #202534) !important;
    }

    .services::before,
    .premium-services::before,
    .trust-section::before,
    .why-clients::before,
    .project-showcase::before,
    .review-submit-section::before {
        right: -125px;
        opacity: .35;
    }

    .stats-bar {
        background: linear-gradient(160deg, var(--primary) 0 46%, #171e2a 46% 100%) !important;
    }

    .cta-banner::after {
        right: -90px;
    }
}
