/* =========================================================
   RRR WORLD CONSTRUCTION - SEO PAGE CSS
========================================================= */

/* ---------- PAGE HERO ---------- */

.rrr-page-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("../images/construction/banner1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rrr-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 35, 0.72);
}

.rrr-page-hero .container {
    position: relative;
    z-index: 2;
}

.rrr-page-hero-content {
    max-width: 900px;
    padding: 90px 0;
}

.rrr-hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: #ed1c24;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rrr-page-hero h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 50px;
    line-height: 1.18;
    font-weight: 700;
}

.rrr-page-hero h1 strong {
    color: #ffffff;
    font-weight: 800;
}

.rrr-page-hero-content > p {
    max-width: 760px;
    margin: 0 0 32px;
    color: rgba(255,255,255,0.88);
    font-size: 18px;
    line-height: 1.8;
}


/* ---------- BUTTONS ---------- */

.rrr-hero-buttons,
.rrr-cta-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.rrr-btn {
    min-height: 52px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.rrr-btn-primary {
    color: #ffffff !important;
    background: #ed1c24;
}

.rrr-btn-primary:hover {
    color: #ffffff !important;
    background: #ed1c24;
    transform: translateY(-3px);
}

.rrr-btn-whatsapp {
    color: #ffffff !important;
    background: #28a5da;
}

.rrr-btn-whatsapp:hover {
    color: #ffffff !important;
    background: #28a5da;
    transform: translateY(-3px);
}


/* =========================================================
   COMMON SECTION
========================================================= */

.rrr-intro-section,
.rrr-about-section,
.rrr-services-section,
.rrr-why-section,
.rrr-faq-section {
    padding: 40px 0;
}

.rrr-section-heading {
    max-width: 850px;
    margin-bottom: 45px;
}

.rrr-section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.rrr-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ed1c24;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rrr-section-heading h2 {
    margin: 0;
    color: #14213d;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
}

.rrr-section-heading h2 span {
    color: #ed1c24;
}

.rrr-section-heading > p {
    max-width: 750px;
    margin: 18px auto 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.rrr-intro-section {
    background: #ffffff;
}

.rrr-intro-content {
    max-width: 1050px;
}

.rrr-intro-content p {
    margin: 0 0 18px;
    color: #555555;
    font-size: 16px;
    line-height: 1.9;
}

.rrr-intro-content p:last-child {
    margin-bottom: 0;
}

.rrr-intro-content strong {
    color: #14213d;
    font-weight: 700;
}


/* =========================================================
   ABOUT
========================================================= */

.rrr-about-section {
    background: #f5f6f8;
}

.rrr-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 65px;
    align-items: center;
}

.rrr-about-content p {
    margin: 0 0 17px;
    color: #666666;
    font-size: 16px;
    line-height: 1.85;
}

.rrr-about-content p:last-child {
    margin-bottom: 0;
}

.rrr-about-points {
    display: grid;
    gap: 18px;
}

.rrr-about-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.rrr-about-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.rrr-about-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #14213d;
    font-size: 20px;
}

.rrr-about-point h3 {
    margin: 0 0 7px;
    color: #14213d;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.rrr-about-point p {
    margin: 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   SERVICES
========================================================= */

.rrr-services-section {
    background: #ffffff;
}

.rrr-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.rrr-service-card {
    position: relative;
    padding: 38px;
    overflow: hidden;
    background: #f7f8fa;
    border: 1px solid #e5e5e5;
    transition: all 0.35s ease;
}

.rrr-service-card:hover {
    background: #ffffff;
    transform: translateY(-7px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.09);
}

.rrr-service-number {
    position: absolute;
    top: 15px;
    right: 22px;
    color: #e6e8ec;
    font-size: 62px;
    line-height: 1;
    font-weight: 800;
}

.rrr-service-icon {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #14213d;
    font-size: 24px;
}

.rrr-service-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 17px;
    color: #14213d;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
}

.rrr-service-card p {
    margin: 0 0 15px;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.rrr-service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 5px;
    color: #f5a623 !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.rrr-service-link:hover {
    color: #14213d !important;
    gap: 13px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.rrr-why-section {
    background: #f5f6f8;
}

.rrr-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rrr-why-card {
    position: relative;
    padding: 35px 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.rrr-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.rrr-why-card > span {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #eceef1;
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
}

.rrr-why-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #14213d;
    font-size: 21px;
}

.rrr-why-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #14213d;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}

.rrr-why-card p {
    margin: 0;
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   FAQ
========================================================= */

.rrr-faq-section {
    background: #ffffff;
}

.rrr-faq-wrapper {
    max-width: 950px;
    margin: 0 auto;
}

.rrr-faq-item {
    border-bottom: 1px solid #dddddd;
}

.rrr-faq-question {
    width: 100%;
    padding: 23px 0;
    border: 0;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    color: #14213d;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    cursor: pointer;
}

.rrr-faq-question i {
    min-width: 18px;
    color: #f5a623;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.rrr-faq-item.active .rrr-faq-question i {
    transform: rotate(45deg);
}

.rrr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.rrr-faq-item.active .rrr-faq-answer {
    max-height: 500px;
}

.rrr-faq-answer p {
    margin: 0;
    padding: 0 45px 24px 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.rrr-final-cta {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background-image:
        linear-gradient(
            rgba(20,33,61,0.94),
            rgba(20,33,61,0.94)
        ),
        url("../images/construction/banner2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rrr-final-cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.rrr-final-cta .rrr-eyebrow {
    color: #f5a623;
}

.rrr-final-cta h2 {
    margin: 10px 0 17px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
}

.rrr-final-cta h2 strong {
    color: #f5a623;
}

.rrr-final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.8;
}

.rrr-cta-buttons {
    justify-content: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rrr-page-hero {
        min-height: 500px;
    }

    .rrr-page-hero h1 {
        font-size: 42px;
    }

    .rrr-about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .rrr-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rrr-intro-section,
    .rrr-about-section,
    .rrr-services-section,
    .rrr-why-section,
    .rrr-faq-section {
        padding: 65px 0;
    }

    .rrr-page-hero {
        min-height: 560px;
    }

    .rrr-page-hero-content {
        padding: 70px 0;
    }

    .rrr-page-hero h1 {
        font-size: 33px;
        line-height: 1.25;
    }

    .rrr-page-hero-content > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .rrr-section-heading h2 {
        font-size: 31px;
    }

    .rrr-services-grid {
        grid-template-columns: 1fr;
    }

    .rrr-why-grid {
        grid-template-columns: 1fr;
    }

    .rrr-service-card {
        padding: 30px 25px;
    }

    .rrr-final-cta {
        padding: 65px 0;
    }

    .rrr-final-cta h2 {
        font-size: 32px;
    }

    .rrr-btn {
        width: 100%;
    }

    .rrr-hero-buttons,
    .rrr-cta-buttons {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .rrr-page-hero h1 {
        font-size: 28px;
    }

    .rrr-section-heading h2 {
        font-size: 27px;
    }

    .rrr-about-point {
        padding: 20px;
    }

    .rrr-about-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 17px;
    }

    .rrr-service-icon {
        width: 58px;
        height: 58px;
    }

    .rrr-faq-question {
        font-size: 14px;
    }

    .rrr-faq-answer p {
        font-size: 14px;
    }

}

/* =========================================================
   INTRO CONTENT - CENTER ALIGN
========================================================= */

.rrr-intro-section .rrr-section-heading {
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.rrr-intro-section .rrr-section-heading h2 {
    text-align: center !important;
}

.rrr-intro-section .rrr-intro-content {
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.rrr-intro-section .rrr-intro-content p {
    text-align: center !important;
}

/* INTRO SECTION */

.rrr-intro-section .rrr-section-heading {
    max-width: 1000px !important;
    margin: 0 auto 45px !important;
    text-align: center !important;
}

.rrr-intro-section .rrr-section-heading h2 {
    text-align: center !important;
}


/* PARAGRAPH AREA */

.rrr-intro-section .rrr-intro-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: left !important;
}

.rrr-intro-section .rrr-intro-content p {
    width: 100% !important;
    margin: 0 0 20px !important;
    text-align: justify !important;
    color: #000;
    font-size: 18px;
    line-height: 1.9;
}

/* =========================================
   ABOUT US - NEW DESIGN
========================================= */

.rrr-about-section {
    position: relative;
    padding: 40px 0;
    background: #f7f8fa;
    overflow: hidden;
}


/* =========================================
   SUBTLE BACKGROUND DESIGN
========================================= */

.rrr-about-section::before {
    content: "ABOUT";
    position: absolute;
    top: 20px;
    right: -20px;

    font-size: 150px;
    font-weight: 800;
    line-height: 1;

    color: rgba(16, 38, 74, 0.025);

    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.rrr-about-heading {
    position: relative;
    z-index: 1;

    text-align: center;
    margin-bottom: 50px;
}


/* EYEBROW */

.rrr-about-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #ef1d2f;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* HEADING */

.rrr-about-heading h2 {
    margin: 0;

    color: #10264a;

    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;

    letter-spacing: -0.5px;
}


/* =========================================
   MODERN HEADING LINE
========================================= */

.rrr-heading-line {
    position: relative;

    width: 90px;
    height: 3px;

    margin: 20px auto 0;

    background: #10264a;
}

.rrr-heading-line span {
    position: absolute;

    top: -4px;
    left: 50%;

    width: 11px;
    height: 11px;

    transform: translateX(-50%) rotate(45deg);

    background: #ef1d2f;
}


/* =========================================
   CONTENT BOX
========================================= */

.rrr-about-content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    padding: 35px 45px;

    background: #ffffff;

    border-left: 4px solid #ef1d2f;

    box-shadow: 0 12px 35px rgba(16, 38, 74, 0.07);
}


/* PARAGRAPH */

.rrr-about-content p {
    margin: 0;

    color: #606975;

    font-size: 16px;
    line-height: 1.95;

    text-align: justify;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rrr-about-section {
        padding: 75px 0;
    }

    .rrr-about-section::before {
        font-size: 100px;
    }

    .rrr-about-heading {
        margin-bottom: 40px;
    }

    .rrr-about-heading h2 {
        font-size: 38px;
    }

    .rrr-about-content {
        padding: 30px 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .rrr-about-section {
        padding: 60px 0;
    }

    .rrr-about-section::before {
        font-size: 70px;
        top: 30px;
    }

    .rrr-about-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .rrr-about-heading h2 {
        font-size: 30px;
    }

    .rrr-heading-line {
        width: 70px;
        margin-top: 16px;
    }

    .rrr-about-content {
        padding: 25px 22px;

        border-left-width: 3px;
    }

    .rrr-about-content p {
        font-size: 15px;
        line-height: 1.85;
        text-align: justify;
    }

}

/* =========================================
   ABOUT US - FULL CONTAINER WIDTH
========================================= */

.rrr-about-section {
    position: relative;
    padding: 40px 0;
    background: #f7f8fa;
    overflow: hidden;
}


/* HEADING */

.rrr-about-heading {
    position: relative;
    z-index: 1;

    width: 100%;
    margin: 0 0 45px;

    text-align: center;
}

.rrr-about-eyebrow {
    display: inline-block;
    margin-bottom: 16px;

    color: #ef1d2f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rrr-about-heading h2 {
    margin: 0;

    color: #10264a;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
}


/* HEADING LINE */

.rrr-heading-line {
    position: relative;

    width: 90px;
    height: 3px;

    margin: 18px auto 0;

    background: #10264a;
}

.rrr-heading-line span {
    position: absolute;

    top: -4px;
    left: 50%;

    width: 11px;
    height: 11px;

    transform: translateX(-50%) rotate(45deg);

    background: #ef1d2f;
}


/* =========================================
   ABOUT CONTENT
   SAME WIDTH AS HERO CONTAINER
========================================= */

.rrr-about-content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: none;

    margin: 0;

    padding: 35px 45px;

    background: #ffffff;

    border-left: 4px solid #ef1d2f;

    box-shadow: 0 10px 30px rgba(16, 38, 74, 0.06);
}


/* PARAGRAPH */

.rrr-about-content p {
    width: 100%;
    max-width: none;

    margin: 0;

    color: #606975;

    font-size: 16px;
    line-height: 1.9;

    text-align: justify;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rrr-about-section {
        padding: 70px 0;
    }

    .rrr-about-heading {
        margin-bottom: 35px;
    }

    .rrr-about-heading h2 {
        font-size: 38px;
    }

    .rrr-about-content {
        padding: 30px 35px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .rrr-about-section {
        padding: 60px 0;
    }

    .rrr-about-heading {
        margin-bottom: 30px;
    }

    .rrr-about-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .rrr-about-heading h2 {
        font-size: 30px;
    }

    .rrr-heading-line {
        width: 70px;
    }

    .rrr-about-content {
        padding: 25px 20px;
        border-left-width: 3px;
    }

    .rrr-about-content p {
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
    }
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.rrr-services-section {
    padding: 40px 0;
    background: #f7f8fa;
}


/* =========================================================
   HEADING
========================================================= */

.rrr-services-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.rrr-services-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ef1d2f;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rrr-services-eyebrow::before,
.rrr-services-eyebrow::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #ef1d2f;
}


/* =========================================================
   GRID
   DESKTOP = 3 TOP + 2 BOTTOM
========================================================= */

.rrr-services-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 25px;
}


/* =========================================================
   CARD
========================================================= */

.rrr-service-card {
    position: relative;

    grid-column: span 2;

    padding: 40px;

    background: #ffffff;

    border: 1px solid #e4e8ed;

    border-radius: 8px;

    box-shadow: 0 8px 25px rgba(16, 38, 74, 0.06);

    overflow: hidden;

    transition: all 0.35s ease;
}


/* BOTTOM 2 CARDS */

.rrr-service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.rrr-service-card:nth-child(5) {
    grid-column: 4 / span 2;
}


/* =========================================================
   TOP RED LINE
========================================================= */

.rrr-service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #ef1d2f;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.rrr-service-card:hover {
    transform: translateY(-7px);

    border-color: #d8dde4;

    box-shadow: 0 18px 40px rgba(16, 38, 74, 0.10);
}

.rrr-service-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   ICON
========================================================= */

.rrr-service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #f1f4f7;

    color: #10264a;

    border-radius: 50%;

    font-size: 22px;

    transition: all 0.35s ease;
}

.rrr-service-card:hover .rrr-service-icon {
    background: #10264a;
    color: #ffffff;
}


/* =========================================================
   NUMBER
========================================================= */

.rrr-service-number {
    display: block;

    margin-bottom: 10px;

    color: #cfd5dc;

    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   TITLE
========================================================= */

.rrr-service-card h3 {
    margin: 0 0 18px;

    color: #10264a;

    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   CONTENT
========================================================= */

.rrr-service-card p {
    margin: 0;

    color: #000000;

    font-size: 16px;
    line-height: 1.9;

    text-align: justify;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rrr-services-section {
        padding: 40px 0;
    }

    .rrr-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rrr-service-card {
        grid-column: auto !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rrr-services-section {
        padding: 40px 0;
    }

    .rrr-services-heading {
        margin-bottom: 30px;
    }

    .rrr-services-eyebrow {
        font-size: 11px;
        letter-spacing: 1.8px;
    }

    .rrr-services-eyebrow::before,
    .rrr-services-eyebrow::after {
        width: 22px;
    }

    .rrr-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rrr-service-card {
        padding: 40px;
    }

    .rrr-service-card h3 {
        font-size: 20px;
    }

    .rrr-service-card p {
        font-size: 15px;
        line-height: 1.8;
    }

}

/* =========================================================
   SERVICES SECTION
========================================================= */

.rrr-services-section {
    padding: 40px 0;
    background: #ffffff;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.rrr-service-card {
    position: relative;

    grid-column: span 2;

    padding: 40px;

    background: #f3f6f9;

    border: 1px solid #e1e6eb;

    border-radius: 8px;

    box-shadow: none;

    overflow: hidden;

    transition: all 0.35s ease;
}


/* BOTTOM 2 CARDS */

.rrr-service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.rrr-service-card:nth-child(5) {
    grid-column: 4 / span 2;
}


/* =========================================================
   CARD TOP ACCENT
========================================================= */

.rrr-service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #ef1d2f;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.rrr-service-card:hover {
    background: #eef3f7;

    transform: translateY(-6px);

    border-color: #d5dce3;

    box-shadow: 0 15px 35px rgba(16, 38, 74, 0.09);
}

.rrr-service-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   ICON
========================================================= */

.rrr-service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #ffffff;

    color: #10264a;

    border: 1px solid #e0e5ea;

    border-radius: 50%;

    font-size: 22px;

    transition: all 0.35s ease;
}

.rrr-service-card:hover .rrr-service-icon {
    background: #10264a;
    color: #ffffff;
    border-color: #10264a;
}

/* =========================================================
   WHY CHOOSE US - CENTRAL DESIGN
========================================================= */

.rrr-why-section {
    padding: 40px 0;
    background: #f6f7f9;
}


/* =========================================================
   HEADING
========================================================= */

.rrr-why-heading {
    text-align: center;
    margin-bottom: 65px;
}

.rrr-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ef1d2f;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.rrr-why-eyebrow::before,
.rrr-why-eyebrow::after {
    content: "";

    width: 38px;
    height: 2px;

    background: #ef1d2f;
}


.rrr-why-heading h2 {
    margin: 14px auto 0;

    max-width: 800px;

    color: #10264a;

    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
}

.rrr-why-heading h2 span {
    display: block;
}


.rrr-why-line {
    width: 60px;
    height: 4px;

    margin: 22px auto 0;

    background: #ef1d2f;
}


/* =========================================================
   MAIN DESIGN
========================================================= */

.rrr-why-design {
    position: relative;

    max-width: 1100px;

    min-height: 620px;

    margin: 0 auto;
}


/* =========================================================
   CENTER
========================================================= */

.rrr-why-center {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 3;
}


.rrr-center-circle {
    width: 210px;
    height: 210px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #10264a;

    border: 12px solid #ffffff;

    box-shadow:
        0 0 0 1px #dce1e6,
        0 20px 50px rgba(16, 38, 74, 0.15);

    text-align: center;
}


.rrr-center-circle span {
    color: #ffffff;

    font-size: 42px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 2px;
}


.rrr-center-circle small {
    margin-top: 10px;

    color: #ffffff;

    font-size: 9px;

    line-height: 1.4;

    letter-spacing: 2px;

    font-weight: 600;
}


/* =========================================================
   CONNECTING CIRCLE
========================================================= */

.rrr-why-design::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 390px;
    height: 390px;

    transform: translate(-50%, -50%);

    border: 1px dashed #cfd5db;

    border-radius: 50%;
}


/* =========================================================
   POINT
========================================================= */

.rrr-why-point {
    position: absolute;

    width: 330px;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    z-index: 2;
}


/* =========================================================
   NUMBER
========================================================= */

.rrr-point-number {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ef1d2f;

    color: #ffffff;

    border-radius: 50%;

    font-size: 13px;

    font-weight: 700;

    box-shadow: 0 8px 20px rgba(239, 29, 47, 0.18);
}


/* =========================================================
   CONTENT
========================================================= */

.rrr-point-content {
    flex: 1;
}


.rrr-point-content h3 {
    margin: 3px 0 8px;

    color: #10264a;

    font-size: 20px;

    line-height: 1.35;

    font-weight: 700;
}


.rrr-point-content p {
    margin: 0;

    color: #000000;

    font-size: 16px;

    line-height: 1.75;

    text-align: justify;
}


/* =========================================================
   POSITIONS
========================================================= */

.point-1 {
    top: 15px;
    left: 0;
}

.point-2 {
    top: 255px;
    left: 0;
}

.point-3 {
    bottom: 15px;
    left: 0;
}


.point-4 {
    top: 15px;
    right: 0;
}

.point-5 {
    top: 255px;
    right: 0;
}

.point-6 {
    bottom: 15px;
    right: 0;
}


/* =========================================================
   SMALL HOVER
========================================================= */

.rrr-why-point {
    transition: transform 0.3s ease;
}

.rrr-why-point:hover {
    transform: translateY(-5px);
}

.rrr-why-point:hover .rrr-point-number {
    background: #10264a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rrr-why-section {
        padding: 60px 0;
    }

    .rrr-why-heading h2 {
        font-size: 36px;
    }

    .rrr-why-design {
        min-height: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .rrr-why-center,
    .rrr-why-design::before {
        display: none;
    }

    .rrr-why-point {
        position: static;

        width: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rrr-why-section {
        padding: 50px 0;
    }

    .rrr-why-heading {
        margin-bottom: 40px;
    }

    .rrr-why-heading h2 {
        font-size: 30px;
    }

    .rrr-why-design {
        display: block;
    }

    .rrr-why-point {
        margin-bottom: 28px;
    }

    .rrr-why-point:last-child {
        margin-bottom: 0;
    }

    .rrr-point-number {
        width: 44px;
        height: 44px;
    }

    .rrr-point-content h3 {
        font-size: 18px;
    }

    .rrr-point-content p {
        font-size: 14px;
        line-height: 1.75;
    }

}

/* =========================================================
   FAQ - FULL WIDTH
========================================================= */

.rrr-faq-section {
    padding: 40px 0;
    background: #ffffff;
}


/* Bootstrap container width use pannum */
.rrr-faq-section .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}


/* FAQ heading */
.rrr-faq-section .rrr-section-heading {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}


/* FAQ wrapper */
.rrr-faq-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}


/* FAQ item */
.rrr-faq-item {
    width: 100%;
    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #e1e5e9;
    border-radius: 5px;

    overflow: hidden;
}


/* Question */
.rrr-faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 22px 28px;

    border: none;
    outline: none;

    background: #eef3f7;

    color: #10264a;

    font-size: 16px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* Plus icon */
.rrr-faq-question i {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f3f5;

    color: #10264a;

    border-radius: 50%;

    font-size: 13px;

    transition: all 0.3s ease;
}


/* Hover */
.rrr-faq-question:hover {
    color: #ef1d2f;
}

.rrr-faq-question:hover i {
    background: #ef1d2f;
    color: #ffffff;
}


/* Answer */
.rrr-faq-answer {
    display: none;

    padding: 0 28px 24px;

    background: #ffffff;
}


.rrr-faq-answer p {
    width: 100%;
    max-width: none;

    margin: 0;

    color: #68737e;

    font-size: 15px;
    line-height: 1.85;

    text-align: justify;
}


/* =========================================================
   ACTIVE FAQ
========================================================= */

.rrr-faq-item.active {
    border-color: #d8dde2;
}


.rrr-faq-item.active .rrr-faq-question {
    color: #ef1d2f;
}


.rrr-faq-item.active .rrr-faq-question i {
    background: #ef1d2f;
    color: #ffffff;

    transform: rotate(45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rrr-faq-section .container {
        max-width: 960px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rrr-faq-section {
        padding: 45px 0;
    }

    .rrr-faq-section .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .rrr-faq-question {
        padding: 18px 18px;

        font-size: 15px;

        gap: 15px;
    }

    .rrr-faq-question i {
        width: 30px;
        height: 30px;
    }

    .rrr-faq-answer {
        padding: 0 18px 20px;
    }

    .rrr-faq-answer p {
        font-size: 14px;
        line-height: 1.75;
    }

}


/* =========================================================
   FAQ
========================================================= */

.rrr-faq-section {
    padding: 40px 0;
    background: #ffffff;
}

.rrr-faq-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.rrr-faq-item {
    width: 100%;
    margin-bottom: 14px;
    background: #eef3f7;
    border: 1px solid #e1e5e9;
    border-radius: 5px;
    overflow: hidden;
}

.rrr-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 25px;

    border: none;
    outline: none;

    background: #eef3f7;
    color: #10264a;

    font-size: 16px;
    font-weight: 600;
    text-align: left;

    cursor: pointer;
}

.rrr-faq-question span {
    padding-right: 20px;
}

.rrr-faq-question i {
    min-width: 18px;
    font-size: 14px;
    transition: 0.3s ease;
}

.rrr-faq-answer {
    display: none;
    width: 100%;
    padding: 0 25px 25px;
    background: #eef3f7;
}

.rrr-faq-answer p {
    margin: 0;
    color: #626c78;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.rrr-faq-item.active .rrr-faq-answer {
    display: block;
}

.rrr-faq-item.active .rrr-faq-question i {
    transform: rotate(45deg);
}

.rrr-faq-answer {
    display: none;
    padding: 0 25px 25px;
}

.rrr-faq-item.active .rrr-faq-answer {
    display: block;
}

.rrr-btn-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: #10264a;
    color: #ffffff !important;
    border: 1px solid #10264a;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.rrr-btn-email i {
    color: #fff;
    font-size: 16px;
}

.rrr-btn-email:hover {
    background: #10264a;
    color: #ffffff !important;
    border-color: #10264a;
}

.rrr-btn-email:hover i {
    color: #ffffff;
}

/* =========================================================
   FINAL CTA - CONTACT BUTTONS ONLY
========================================================= */

.rrr-final-cta {
    padding: 40px 0;
    background: #ffffff;
}

.rrr-final-cta-content {
    width: 100%;
    text-align: center;
}

.rrr-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Common Button Style */

.rrr-cta-buttons .rrr-btn {
    min-width: 210px;
    min-height: 55px;
    padding: 15px 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Phone */

.rrr-cta-buttons .rrr-btn-primary {
    background: #ef1d2f;
    color: #ffffff !important;
    border: 1px solid #ef1d2f;
}

.rrr-cta-buttons .rrr-btn-primary i {
    color: #ffffff;
}

.rrr-cta-buttons .rrr-btn-primary:hover {
    background: #d91526;
    border-color: #d91526;
    color: #ffffff !important;
}

/* WhatsApp */

.rrr-cta-buttons .rrr-btn-whatsapp {
    background: #29abe2;
    color: #ffffff !important;
    border: 1px solid #29abe2;
}

.rrr-cta-buttons .rrr-btn-whatsapp i {
    color: #ffffff;
}

.rrr-cta-buttons .rrr-btn-whatsapp:hover {
    background: #29abe2;
    border-color:#29abe2;
    color: #ffffff !important;
}

/* Email */

.rrr-cta-buttons .rrr-btn-email {
    background: #10264a ;
    color: #ffffff !important;
    border: 1px solid #10264a ;
}

.rrr-cta-buttons .rrr-btn-email i {
    color: #ffffff;
}

.rrr-cta-buttons .rrr-btn-email:hover {
    background: #10264a;
    border-color: #10264a;
    color: #ffffff !important;
}

.rrr-cta-buttons .rrr-btn-email:hover i {
    color: #ffffff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .rrr-final-cta {
        padding: 35px 15px;
    }

    .rrr-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .rrr-cta-buttons .rrr-btn {
        width: 100%;
        max-width: 320px;
        min-width: 0;
    }

}