/*
 * In & Out Trading — Exact ECS.mu-style replica with local branding
 */

:root {
    --rps-red: #dd1936;
    --rps-dark: #252525;
    --rps-text: #363636;
    --rps-light: #f0f0ee;
    --rps-white: #ffffff;
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--rps-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--rps-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover,
a:focus {
    color: #252525;
    text-decoration: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:focus,
.btn:active:focus {
    outline: none;
    box-shadow: none;
}

.btn-primary {
    background: var(--rps-red);
    border: 2px solid var(--rps-red);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:active {
    background: #b71529;
    border-color: #b71529;
    color: #fff;
}

.btn-service {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 24px;
}

.btn-service:hover {
    background: #fff;
    color: var(--rps-text);
}

.btn-quote {
    background: var(--rps-red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-quote:hover {
    background: #b71529;
    color: #fff;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 14px;
    font-size: 15px;
    height: auto;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--rps-red);
    box-shadow: none;
}

/* Header */
.rps-header {
    background: var(--rps-white);
    padding: 15px 0;
}

.rps-logo img {
    max-height: 70px;
}

/* Main Menu */
.rps-mainmenu {
    background: var(--rps-white);
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

.rps-mainmenu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.rps-mainmenu .navbar-toggler {
    border: none;
    padding: 10px 0;
}

.rps-mainmenu .navbar-toggler:focus {
    box-shadow: none;
}

.rps-mainmenu .navbar-nav {
    align-items: center;
}

.rps-mainmenu .nav-item {
    padding: 15px 5px 0 15px;
}

.rps-mainmenu .nav-link {
    color: var(--rps-text);
    text-transform: uppercase;
    padding: 10px 5px 3px 5px !important;
    font-weight: 700;
    font-size: 15px;
    border-bottom: 4px solid var(--menu-color, transparent);
}

.rps-mainmenu .nav-link:hover,
.rps-mainmenu .nav-link.active {
    background: none;
    color: var(--rps-text);
}

.rps-mainmenu .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 0;
}

.rps-mainmenu .dropdown-item {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-left: 4px solid var(--menu-color, transparent);
}

.rps-mainmenu .dropdown-item:hover {
    background: #f8f8f8;
    color: var(--rps-text);
}

/* Hero */
.rps-fullslider {
    width: 100%;
}

.rps-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.rps-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.rps-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.rps-hero-content h1 {
    font-size: 52px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.15;
}

.rps-hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* What Drives Us */
.rps-fullbelowslider {
    background-color: var(--rps-light);
    padding: 70px 0;
}

.rps-fullbelowslider .block-title {
    color: var(--rps-red);
    font-weight: 700;
    margin-bottom: 15px;
}

.rps-fullbelowslider h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.rps-fullbelowslider p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.rps-whatimg {
    max-width: 100%;
}

/* Full Container Sections */
.rps-fullcontainer {
    padding-top: 50px;
}

.rps-fullcontainer .block-title,
.rps-contact .block-title,
.rps-policy h2,
.rps-realization h2,
.rps-products .block-title,
.rps-certs .block-title,
.rps-testimonials .block-title {
    text-align: center;
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 45px;
}

.rps-fullcontainer .block-title strong,
.rps-contact .block-title strong,
.rps-policy h2 strong,
.rps-realization h2 strong,
.rps-products .block-title strong,
.rps-certs .block-title strong,
.rps-testimonials .block-title strong {
    color: var(--rps-red);
}

/* Services */
.services-background-color {
    padding: 0;
    margin-bottom: 2px;
    color: #fff;
}

.services-background-color .container {
    padding-top: 0;
    padding-bottom: 0;
}

.services-background-color .row {
    min-height: 380px;
}

.services-background-color .img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.services-float-left {
    padding-top: 50px;
    padding-bottom: 50px;
}

.rps-float-change-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rps-circuit-line {
    width: 4px;
    height: 100%;
    min-height: 200px;
    opacity: 0.6;
}

.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-title {
    margin-top: 0;
    font-size: 26px;
    text-transform: uppercase;
}

.service-title a {
    color: #fff;
}

.service-title a:hover {
    color: #fff;
    opacity: 0.9;
}

.services-float-left p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.8;
}

/* Quality Section */
.rps-quality-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: #fff;
}

.rps-parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.rps-quality-section .container {
    position: relative;
    z-index: 2;
}

.rps-quality {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rps-quality .left-bottom {
    padding-top: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.rps-quality .right-bottom {
    color: #fff;
    font-size: 30px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.rps-quality .right-bottom p {
    float: left;
    padding: 15px;
    margin: 0;
}

.rps-quality .right-bottom p:nth-child(1),
.rps-quality .right-bottom p:nth-child(2) {
    border-right: 1px solid rgba(255,255,255,0.5);
}

.rps-quality .right-bottom i {
    margin-right: 8px;
}

/* Quality Policy */
.rps-policy {
    padding: 60px 0;
}

.rps-policy h2 {
    margin-bottom: 15px;
}

.rps-policy p {
    color: #666;
}

/* Realization */
.rps-realization {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: #fff;
}

.rps-realization .container {
    position: relative;
    z-index: 2;
}

.rps-realization h2 {
    margin-bottom: 40px;
    color: #fff;
}

.rps-hp-realization {
    position: relative;
    overflow: hidden;
    margin: 0 10px;
}

.rps-hp-realization img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rps-hp-realization:hover img {
    transform: scale(1.05);
}

.rps-hp-realization h4 {
    opacity: 0;
    position: absolute;
    z-index: 9999;
    top: 10%;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 22px;
    transition: all 0.4s;
    text-transform: uppercase;
}

.rps-hp-realization:hover h4 {
    opacity: 1;
}

.rps-img-effect {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rps-img-effect i {
    color: #fff;
    font-size: 36px;
}

.rps-hp-realization:hover .rps-img-effect {
    opacity: 1;
}

/* Owl Carousel Dots */
.owl-theme .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.5);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--rps-red);
}

/* Products / Brands */
.rps-products {
    padding: 70px 0;
}

.rps-products p {
    color: #666;
    margin-bottom: 40px;
}

.rps-brand-item {
    padding: 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.rps-brand-item:hover {
    border-color: var(--rps-red);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.rps-brand-item img {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.rps-brand-item:hover img {
    filter: grayscale(0%);
}

/* Figures */
.rps-figures {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.rps-figures .container {
    position: relative;
    z-index: 2;
}

.rps-figures h3 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 700;
}

.rps-in-figures h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 0;
}

.rps-in-figures h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

/* Testimonials */
.rps-testimonials {
    padding: 80px 0;
    background: var(--rps-light);
}

.rps-testimonial-card {
    background: #fff;
    padding: 40px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin: 0 10px;
}

.rps-quote-icon {
    color: var(--rps-red);
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.rps-testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
}

.rps-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--rps-red);
}

.rps-testimonial-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--rps-dark);
    margin-bottom: 5px;
}

.rps-testimonial-card span {
    color: #777;
    font-size: 14px;
}

/* Certifications */
.rps-certs {
    padding: 60px 0;
}

.rps-cert-item {
    text-align: center;
    padding: 20px;
}

.rps-cert-item img {
    max-height: 90px;
    width: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.rps-cert-item:hover img {
    transform: translateY(-5px);
}

/* Map */
.rps-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact */
.rps-contact {
    padding: 80px 0;
    background: #fff;
}

.rps-contact-form {
    margin-bottom: 30px;
}

.rps-contact-info h3 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 20px;
}

.rps-contact-info p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 12px;
}

.rps-contact-info a {
    color: var(--rps-red);
}

.rps-col-container {
    border-left: 1px solid #ddd;
    height: 100%;
    min-height: 200px;
}

/* Floating Quote */
.rps-floating-quote {
    position: fixed;
    top: 35%;
    right: -48px;
    background: var(--rps-red);
    color: #fff;
    transform: rotate(270deg);
    z-index: 999;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    line-height: 1.3;
}

.rps-floating-quote:hover {
    background: #b71529;
}

.rps-floating-quote i {
    color: #fff;
    margin: 0 5px;
}

/* Footer */
.rps-footer .footer {
    background: var(--rps-light);
    padding: 20px 0;
    text-align: center;
}

.rps-footer .large-footer {
    background: var(--rps-dark);
    color: #aaa;
    padding-top: 50px;
}

.rps-footer .top-footer {
    display: flex;
    flex-wrap: wrap;
}

.rps-footer .top-footer-first,
.rps-footer .top-footer-second,
.rps-footer .top-footer-third,
.rps-footer .top-footer-fourth {
    padding-bottom: 30px;
}

.rps-footer h2 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 700;
}

.rps-footer p {
    font-size: 14px;
    line-height: 1.9;
    color: #aaa;
}

.rps-footer ul {
    list-style: none;
    padding: 0;
}

.rps-footer ul li {
    padding: 5px 0;
}

.rps-footer ul li a {
    color: #aaa;
    font-size: 14px;
}

.rps-footer ul li a:hover {
    color: #fff;
}

.rps-follow {
    display: flex;
    gap: 15px;
}

.rps-follow a {
    color: #aaa;
    font-size: 24px;
}

.rps-follow a:hover {
    color: #fff;
}

.rps-footer .tiny-footer {
    background: var(--rps-red);
    color: #fff;
    padding: 18px 0;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.rps-footer .tiny-footer p {
    color: #fff;
    margin: 0;
    font-size: 13px;
}

/* Modal */
.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    border-bottom: 3px solid var(--rps-red);
    padding: 20px 25px;
}

.modal-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

.modal-body {
    padding: 25px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: var(--rps-red);
    color: #fff;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
    z-index: 998;
    display: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.back-to-top:hover {
    background: var(--rps-dark);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .rps-hero-content h1 {
        font-size: 38px;
    }

    .rps-mainmenu .nav-item {
        padding: 5px 0;
    }

    .rps-mainmenu .nav-link {
        border-bottom: none;
        border-left: 4px solid var(--menu-color, transparent);
        padding-left: 10px !important;
    }

    .rps-floating-quote {
        display: none;
    }

    .rps-quality .right-bottom p:nth-child(1),
    .rps-quality .right-bottom p:nth-child(2) {
        border-right: none;
    }

    .rps-in-figures h1 {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .rps-hero {
        min-height: 450px;
    }

    .rps-hero-content h1 {
        font-size: 30px;
    }

    .rps-hero-content p {
        font-size: 16px;
    }

    .rps-fullcontainer .block-title,
    .rps-contact .block-title,
    .rps-policy h2,
    .rps-realization h2,
    .rps-products .block-title,
    .rps-certs .block-title,
    .rps-testimonials .block-title {
        font-size: 28px;
    }

    .services-background-color .row {
        min-height: auto;
    }

    .services-float-left {
        padding: 35px 15px;
    }

    .rps-circuit-line {
        display: none;
    }

    .rps-quality .right-bottom {
        font-size: 22px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Animated Heroes (CSS/SVG — no GIF/image files)
   ═══════════════════════════════════════════════════════════════════════════ */

.rps-hero-animated {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
}

.rps-hero-animated::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.rps-hero-animated .rps-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 0 20px;
}

.rps-hero-animated .rps-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.15;
}

.rps-hero-animated .rps-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.92;
}

.rps-hero-graphic {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.rps-hero-graphic svg {
    width: 100%;
    height: 100%;
    max-width: 900px;
    max-height: 550px;
    opacity: 0.35;
}

/* Keyframes */
@keyframes rps-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rps-rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes rps-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes rps-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0.4; }
}

@keyframes rps-dash {
    to { stroke-dashoffset: -100; }
}

@keyframes rps-flow {
    0% { stroke-dashoffset: 200; }
    100% { stroke-dashoffset: 0; }
}

@keyframes rps-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes rps-spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rps-piston {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
}

/* Home Hero — rotating gears + valve */
.hero-home .gear {
    transform-origin: center;
}
.hero-home .gear-1 { animation: rps-rotate 12s linear infinite; }
.hero-home .gear-2 { animation: rps-rotate-reverse 8s linear infinite; }
.hero-home .gear-3 { animation: rps-rotate 20s linear infinite; }
.hero-home .piston { animation: rps-piston 3s ease-in-out infinite; }

/* Solutions Hero — animated circuit */
.hero-solutions .circuit-line {
    stroke-dasharray: 10 8;
    animation: rps-flow 2s linear infinite;
}
.hero-solutions .circuit-node {
    animation: rps-pulse 2s ease-in-out infinite;
}

/* Sectors Hero — floating industry icons */
.hero-sectors .sector-icon {
    animation: rps-float 5s ease-in-out infinite;
}
.hero-sectors .sector-icon:nth-child(2) { animation-delay: 0.8s; }
.hero-sectors .sector-icon:nth-child(3) { animation-delay: 1.6s; }
.hero-sectors .sector-icon:nth-child(4) { animation-delay: 2.4s; }
.hero-sectors .sector-icon:nth-child(5) { animation-delay: 3.2s; }
.hero-sectors .sector-icon:nth-child(6) { animation-delay: 4.0s; }

/* Products Hero — rotating brand ring + valve */
.hero-products .brand-ring {
    transform-origin: center;
    animation: rps-spin-slow 30s linear infinite;
}
.hero-products .valve-handle {
    transform-origin: center;
    animation: rps-rotate 8s linear infinite;
}

/* Projects Hero — animated project frames */
.hero-projects .project-frame {
    animation: rps-float 5s ease-in-out infinite;
}
.hero-projects .project-frame:nth-of-type(2) { animation-delay: 0.8s; }
.hero-projects .project-frame:nth-of-type(3) { animation-delay: 1.6s; }
.hero-projects .circuit-line {
    stroke-dasharray: 10 8;
    animation: rps-flow 2s linear infinite;
}
.hero-projects .circuit-node {
    animation: rps-pulse 2.5s ease-in-out infinite;
}

/* About Hero — animated timeline */
.hero-about .timeline-node {
    animation: rps-pulse 2.5s ease-in-out infinite;
}
.hero-about .timeline-node:nth-of-type(2) { animation-delay: 0.6s; }
.hero-about .timeline-node:nth-of-type(3) { animation-delay: 1.2s; }
.hero-about .timeline-card {
    animation: rps-float 6s ease-in-out infinite;
}
.hero-about .timeline-line {
    stroke-dasharray: 10 8;
    animation: rps-flow 2.5s linear infinite;
}

/* Contact Hero — bouncing location pin + routed dots */
.hero-contact .pin-bounce {
    animation: rps-bounce 2.5s ease-in-out infinite;
    transform-origin: bottom center;
}
.hero-contact .pin-shadow {
    animation: rps-pulse 2.5s ease-in-out infinite;
    transform-origin: center;
}
.hero-contact .contact-dot {
    animation: rps-pulse 2s ease-in-out infinite;
}
.hero-contact .contact-dot:nth-of-type(2) { animation-delay: 0.4s; }
.hero-contact .contact-dot:nth-of-type(3) { animation-delay: 0.8s; }
.hero-contact .route-line {
    stroke-dasharray: 10 8;
    animation: rps-flow 2.5s linear infinite;
}

/* Section Cards used on inner pages */
.rps-section-cards {
    padding: 70px 0;
    background: var(--rps-light);
}

.rps-card {
    background: #fff;
    padding: 35px;
    margin-bottom: 25px;
    border-left: 5px solid var(--card-color, var(--rps-red));
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.rps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.rps-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-color, var(--rps-red));
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
}

.rps-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rps-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Inner page intro */
.rps-page-intro {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.rps-page-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Product showcase */
.rps-product-showcase {
    padding: 70px 0;
    background: #fff;
}

.rps-product-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.rps-product-item:hover {
    border-color: var(--rps-red);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.rps-product-item i {
    font-size: 42px;
    color: var(--rps-red);
    margin-bottom: 18px;
}

.rps-product-item h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rps-product-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

/* Gallery grid */
.rps-gallery-grid {
    padding: 70px 0;
    background: var(--rps-light);
}

.rps-gallery-grid .rps-hp-realization {
    margin-bottom: 25px;
}

/* Contact map */
.rps-map-section {
    padding: 0;
    line-height: 0;
}
.rps-map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(40%);
}

/* Timeline on about */
.rps-timeline {
    padding: 70px 0;
    background: #fff;
}

.rps-timeline-item {
    display: flex;
    margin-bottom: 30px;
}

.rps-timeline-year {
    min-width: 120px;
    font-size: 28px;
    font-weight: 900;
    color: var(--rps-red);
}

.rps-timeline-content {
    border-left: 3px solid var(--rps-red);
    padding-left: 25px;
}

.rps-timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.rps-timeline-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive hero */
@media (max-width: 991px) {
    .rps-hero-animated {
        min-height: 450px;
    }
    .rps-hero-animated .rps-hero-content h1 {
        font-size: 36px;
    }
    .rps-hero-graphic svg {
        max-width: 600px;
        opacity: 0.25;
    }
}

@media (max-width: 767px) {
    .rps-hero-animated {
        min-height: 380px;
    }
    .rps-hero-animated .rps-hero-content h1 {
        font-size: 28px;
    }
    .rps-hero-animated .rps-hero-content p {
        font-size: 16px;
    }
    .rps-hero-graphic svg {
        max-width: 400px;
    }
    .rps-card {
        padding: 25px;
    }
}

