*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* ================= GLOBAL DESIGN SYSTEM ================= */

:root{
    --rm-blue:#0057b8;
    --rm-blue-dark:#003b8f;
    --rm-orange:#f7941d;
    --rm-text:#243447;
    --rm-muted:#667585;
    --rm-light:#f7f9fc;
    --rm-border:#e5ebf2;
    --rm-white:#ffffff;

    --rm-radius:14px;

    --rm-shadow:
        0 8px 28px rgba(0,0,0,.07);

    --rm-shadow-hover:
        0 16px 36px rgba(0,0,0,.11);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--rm-text);
    background:#ffffff;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

}

.container{

width:90%;

max-width:1280px;

margin:auto;

}

/* Header */

.top-header{
    background:#ffffff;
    padding:15px 0;
    border-bottom:1px solid #ddd;
}

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:120px;
}

.company-info h1{
    font-size:28px;
    color:#0057b8;
    margin-bottom:5px;
}

.company-info p{
    color:#666;
    font-size:16px;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:12px 24px;
    border-radius:6px;
    font-weight:600;
}

/* Navigation */

.navbar{
    background:#0057b8;
}

.navbar ul{
    display:flex;
    justify-content:center;
    list-style:none;
}

.navbar li{
    margin:0 20px;
}

.navbar a{
    color:white;
    display:block;
    padding:18px 0;
    font-weight:500;
}

.navbar a:hover{
    color:#ff9800;
}

/* ================= HERO ================= */

.hero{
    background:
    linear-gradient(
        rgba(0,43,91,.76),
        rgba(0,43,91,.76)
    ),
    url("../images/optimized/hero-bg.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:#fff;
    padding:150px 0 125px;

    text-align:center;
    position:relative;
}

.hero-content{
    max-width:1050px;
    margin:0 auto;
}

.hero h4{
    display:inline-block;

    font-size:15px;
    font-weight:700;
    letter-spacing:1.2px;
    text-transform:uppercase;

    color:#66e0f2;

    margin-bottom:18px;
}

.hero h1{
    max-width:980px;
    margin:0 auto 25px;

    font-size:56px;
    line-height:1.16;
    font-weight:800;
    letter-spacing:-.8px;

    color:#ffffff;
}

.hero p{
    max-width:900px;
    margin:0 auto 12px;

    font-size:18px;
    line-height:1.85;
    color:rgba(255,255,255,.92);
}

.hero-buttons{
    margin-top:34px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    min-width:175px;

    padding:15px 28px;

    border-radius:8px;

    font-weight:700;
    font-size:15px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn-primary{
    background:#b45309;
    color:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.btn-secondary{
    background:#25D366;
    color:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 26px rgba(0,0,0,.25);
}

.hero-trust{
    margin:35px auto 0;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px 26px;

    max-width:900px;
}

.hero-trust span{
    font-size:13px;
    font-weight:600;
    color:rgba(255,255,255,.92);

    white-space:nowrap;
}

.hero-trust span::first-letter{
    color:#66e0f2;
}

/* ================= TRUST COUNTERS ================= */

.counter-section{
    padding:55px 0;
    background:#f7f9fc;
    border-bottom:1px solid #e7edf4;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.counter-box{
    background:#ffffff;
    padding:30px 20px;
    text-align:center;

    border:1px solid #e7edf4;
    border-radius:14px;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.counter-box:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 30px rgba(0,0,0,.10);
}

.counter-box .counter-number{
    margin-bottom:5px;

    font-size:42px;
    line-height:1.1;
    font-weight:800;

    color:#0057b8;
}

.counter-box p{
    font-size:14px;
    font-weight:600;
    color:#5f6b78;
}

/*========== TOP BAR ==========*/

.top-header{

background:#0b2f66;

color:white;

font-size:14px;

padding:10px 0;

}

.top-contact{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}

.left-contact span,

.right-contact span{

margin-right:20px;

}

/* ================= NAVIGATION ================= */

.navbar{
    background:#ffffff;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    position:sticky;
    top:0;
    z-index:999;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:25px;

    padding:6px 0;
}

.logo img{
    height:70px;
    width:auto;
}

.navbar ul{
    display:flex;
    align-items:center;
    justify-content:center;

    list-style:none;

    gap:4px;
}

.navbar li{
    margin:0;
}

.navbar li a{
    position:relative;

    display:block;

    padding:13px 10px;

    color:#003b8f;

    font-size:14px;
    font-weight:600;

    white-space:nowrap;

    transition:color .25s ease;
}

.navbar li a::after{
    content:"";

    position:absolute;

    left:10px;
    right:10px;
    bottom:5px;

    height:2px;

    background:#f7941d;

    transform:scaleX(0);
    transform-origin:center;

    transition:transform .25s ease;
}

.navbar li a:hover{
    color:#f7941d;
}

.navbar li a:hover::after{
    transform:scaleX(1);
}

/* Anchor scroll spacing for sticky navigation */
section[id]{
    scroll-margin-top:120px;
}

.book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:110px;
    height:48px;
    padding:0 20px;

    background:#b45309;
    color:#fff !important;

    border-radius:8px;

    font-size:14px;
    font-weight:700;
    line-height:1;

    white-space:nowrap;
    text-decoration:none;

    box-sizing:border-box;

    box-shadow:0 6px 15px rgba(247,148,29,.22);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.book-btn:hover{
    background:#e8830f;
    color:#fff !important;
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(247,148,29,.28);
}

.book-btn:hover{
    background:#003b8f;

    transform:translateY(-2px);

    box-shadow:0 9px 20px rgba(0,59,143,.20);
}   

/* WHY CHOOSE */

.why-choose{
    padding:90px 0;
    background:#f8fafc;
}

/* ================= SECTION TITLES ================= */

.section-title{
    max-width:900px;
    margin:0 auto 55px;

    text-align:center;
}

.section-title h2{
    margin:0 0 16px;

    font-size:38px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:-.4px;

    color:var(--rm-blue-dark);
}

.section-title p{
    max-width:820px;
    margin:0 auto 10px;

    font-size:17px;
    line-height:1.75;

    color:var(--rm-muted);
}

.section-title p:last-child{
    margin-bottom:0;
}

/* ================= WHY CHOOSE ================= */

.why-grid{
    display:grid;

    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:28px;

    margin-top:40px;
}

.why-card{
    display:flex;
    flex-direction:column;
    align-items:center;

    background:#ffffff;

    padding:34px 28px 32px;

    border:1px solid var(--rm-border);
    border-radius:var(--rm-radius);

    text-align:center;

    box-shadow:var(--rm-shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.why-card:hover{
    transform:translateY(-5px);

    border-color:#d4dfeb;

    box-shadow:var(--rm-shadow-hover);
}

/* Icon */

.why-card .icon{
    width:68px;
    height:68px;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--rm-blue),
        #1688ed
    );

    color:#ffffff;

    font-size:30px;
    line-height:1;

    flex-shrink:0;
}

/* Heading */

.why-card h3{
    margin:0 0 12px;

    color:var(--rm-blue-dark);

    font-size:20px;
    line-height:1.35;
    font-weight:800;
}

/* Description */

.why-card p{
    margin:0;

    color:var(--rm-muted);

    font-size:15px;
    line-height:1.75;
}

/* ================= SERVICES ================= */

.services{
    padding:90px 0;
    background:#ffffff;
}

.service-grid{
    display:grid;

    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:28px;

    margin-top:45px;
}

.service-card{
    display:flex;
    flex-direction:column;

    background:#ffffff;

    border:1px solid var(--rm-border);
    border-radius:var(--rm-radius);

    overflow:hidden;

    box-shadow:var(--rm-shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.service-card:hover{
    transform:translateY(-5px);

    border-color:#d4dfeb;

    box-shadow:var(--rm-shadow-hover);
}

.service-card img{
    display:block;

    width:100%;
    height:220px;

    object-fit:cover;

    background:#eef3f8;
}

.service-card h3{
    margin:0;

    padding:24px 24px 10px;

    font-size:22px;
    line-height:1.3;
    font-weight:800;

    color:var(--rm-blue-dark);
}

.service-card p{
    margin:0;

    padding:0 24px 22px;

    font-size:15px;
    line-height:1.75;

    color:var(--rm-muted);
}

.service-card .service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    align-self:flex-start;

    margin:
        auto 24px 24px;

    padding:12px 18px;

    border-radius:7px;

    background:var(--rm-blue);

    color:#ffffff;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.service-card .service-btn:hover{
    background:var(--rm-orange);

    transform:translateY(-2px);

    box-shadow:0 7px 16px rgba(0,0,0,.12);
}

.service-card p{

padding:0 25px;

line-height:1.8;

color:#666;

min-height:110px;

}

.service-btn{

display:inline-block;

margin:25px;

padding:14px 35px;

background:#ff9800;

color:#fff;

text-decoration:none;

border-radius:8px;

font-weight:600;

transition:.3s;

}

.service-btn:hover{

background:#003b8e;

}

/* ================= BRANDS ================= */

.brands{
    padding:90px 0;
    background:var(--rm-light);
}

.brand-grid{
    display:grid;

    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:22px;

    margin-top:40px;
}

.brand-card{
    min-height:150px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:28px 22px;

    background:var(--rm-white);

    border:1px solid var(--rm-border);
    border-radius:var(--rm-radius);

    box-shadow:var(--rm-shadow);

    text-align:center;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.brand-card:hover{
    transform:translateY(-5px);

    border-color:#d4dfeb;

    box-shadow:var(--rm-shadow-hover);
}

/* Brand name */

.brand-card .brand-name{
    margin-bottom:6px;

    font-size:24px;
    line-height:1.2;
    font-weight:800;
}

/* Brand colours */

.brand-card:nth-child(1) .brand-name{
    color:#0071bc;
}

.brand-card:nth-child(2) .brand-name{
    color:#111111;
}

.brand-card:nth-child(3) .brand-name{
    color:#0055a5;
}

.brand-card:nth-child(4) .brand-name{
    color:#0066b3;
}

.brand-card:nth-child(5) .brand-name{
    color:#a50034;
}

.brand-card:nth-child(6) .brand-name{
    color:#1428a0;
}

.brand-card:nth-child(7) .brand-name{
    color:#e60012;
}

.brand-card:nth-child(8) .brand-name{
    color:#c8102e;
}

.brand-card:nth-child(9) .brand-name{
    color:#d71920;
}

/* Supporting text */

.brand-card h3{
    display:none;
}

.brand-card p{
    margin:0;

    font-size:13px;
    line-height:1.5;
    font-weight:600;

    color:var(--rm-muted);
}

/* ================= PROJECTS ================= */

.projects{
    padding:90px 0 70px;
    background:#ffffff;
}

.project-grid{
    display:grid;

    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:28px;

    margin-top:40px;
}

.project-card{
    display:flex;
    flex-direction:column;

    background:var(--rm-white);

    border:1px solid var(--rm-border);
    border-radius:var(--rm-radius);

    overflow:hidden;

    box-shadow:var(--rm-shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.project-card:hover{
    transform:translateY(-5px);

    border-color:#d4dfeb;

    box-shadow:var(--rm-shadow-hover);
}

.project-card img{
    display:block;

    width:100%;
    height:250px;

    object-fit:cover;

    background:#eef3f8;
}

.project-content{
    display:flex;
    flex-direction:column;
    flex:1;

    padding:25px 24px 24px;
}

.project-content h3{
    margin:0 0 9px;

    color:var(--rm-blue-dark);

    font-size:21px;
    line-height:1.35;
    font-weight:800;
}

.project-content p{
    margin:0 0 14px;

    color:var(--rm-muted);

    font-size:15px;
    line-height:1.75;
}

.project-content p:first-of-type{
    color:#526273;

    font-size:13px;
    font-weight:700;

    line-height:1.5;

    margin-bottom:12px;
}

.project-content span{
    display:inline-flex;
    align-self:flex-start;

    margin-top:auto;

    padding:6px 11px;

    border-radius:20px;

    background:#eef5fc;

    color:var(--rm-blue-dark);

    font-size:12px;
    line-height:1.4;
    font-weight:700;
}

/*================ TESTIMONIALS ================*/

.testimonials{
    padding:90px 0;
    background:#f8fafc;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.15);
}

.stars{
    font-size:26px;
    color:#ffb400;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    font-style:italic;
}

.testimonial-card h4{
    color:#003b8e;
    font-size:20px;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#888;
}

/* ================= FAQ ================= */

.faq{
    padding:90px 0;
    background:#ffffff;
}

.faq-container{
    max-width:900px;
    margin:40px auto 0;
}

.faq-item{
    margin-bottom:14px;

    background:#ffffff;

    border:1px solid var(--rm-border);
    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

    transition:
        box-shadow .25s ease,
        border-color .25s ease;
}

.faq-item:hover{
    border-color:#d4dfeb;

    box-shadow:0 8px 24px rgba(0,0,0,.07);
}

.faq-question{
    width:100%;

    padding:20px 24px;

    background:#ffffff;

    color:var(--rm-blue-dark);

    border:none;

    font-family:'Poppins',sans-serif;

    font-size:16px;
    line-height:1.5;
    font-weight:700;

    text-align:left;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    cursor:pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.faq-question:hover{
    background:#f7faff;
}

.faq-question span{
    display:flex;
    align-items:center;
    justify-content:center;

    width:30px;
    height:30px;

    flex:0 0 30px;

    border-radius:50%;

    background:#eef5fc;

    color:var(--rm-blue);

    font-size:20px;
    line-height:1;

    font-weight:600;
}

.faq-answer{
    display:none;

    padding:0 24px 22px;

    background:#ffffff;

    color:var(--rm-muted);

    font-size:15px;
    line-height:1.8;
}

.faq-answer p{
    margin:0;
}

/* ================= CONTACT & BOOKING ================= */

.contact{
    padding:90px 0;
    background:var(--rm-light);
}

.contact-grid{
    display:grid;

    grid-template-columns:minmax(0, .85fr) minmax(0, 1.15fr);

    gap:28px;

    margin-top:40px;

    align-items:start;
}

/* Contact information */

.contact-info{
    background:var(--rm-white);

    padding:34px 30px;

    border:1px solid var(--rm-border);
    border-radius:var(--rm-radius);

    box-shadow:var(--rm-shadow);
}

.contact-info h3{
    margin:0 0 22px;

    color:var(--rm-blue-dark);

    font-size:25px;
    line-height:1.3;
    font-weight:800;
}

.contact-info p{
    margin:0 0 18px;

    color:var(--rm-muted);

    font-size:15px;
    line-height:1.7;
}

.contact-info p:last-of-type{
    margin-bottom:0;
}

.contact-info a{
    color:var(--rm-blue);

    font-weight:600;

    text-decoration:none;

    transition:color .2s ease;
}

.contact-info a:hover{
    color:var(--rm-orange);
}

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:22px;

    padding:13px 24px;

    background:#25D366;
    color:#ffffff;

    border-radius:8px;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.contact-btn:hover{
    transform:translateY(-2px);

    background:#20bd5a;

    color:#ffffff;

    box-shadow:0 7px 16px rgba(37,211,102,.22);
}

/* Booking form card */

.contact-form{
    background:var(--rm-white);

    padding:34px 30px;

    border:1px solid var(--rm-border);
    border-radius:var(--rm-radius);

    box-shadow:var(--rm-shadow);
}

/* Booking introduction */

.booking-intro{
    margin-bottom:24px;

    padding-bottom:20px;

    border-bottom:1px solid var(--rm-border);
}

.booking-intro h3{
    margin:0 0 10px;

    color:var(--rm-blue-dark);

    font-size:25px;
    line-height:1.3;
    font-weight:800;
}

.booking-intro p{
    margin:0 0 9px;

    color:var(--rm-muted);

    font-size:14px;
    line-height:1.7;
}

.booking-intro p:last-child{
    margin-bottom:0;
}

/* ================= PRICING ================= */

.pricing{
    padding:90px 0;
    background:#ffffff;
}

.pricing-grid{
    display:grid;

    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:28px;

    margin-top:40px;
}

.pricing-card{
    display:flex;
    flex-direction:column;

    background:var(--rm-white);

    border:1px solid var(--rm-border);
    border-radius:var(--rm-radius);

    padding:32px 28px;

    text-align:center;

    box-shadow:var(--rm-shadow);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.pricing-card:hover{
    transform:translateY(-5px);

    border-color:#d4dfeb;

    box-shadow:var(--rm-shadow-hover);
}

.pricing-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:62px;
    height:62px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#eef5fc;

    color:var(--rm-blue);

    font-size:32px;
}

.pricing-card h3{
    margin:0 0 8px;

    font-size:23px;
    line-height:1.3;
    font-weight:800;

    color:var(--rm-blue-dark);
}

.pricing-card h4{
    margin:0 0 18px;

    color:var(--rm-muted);

    font-size:14px;
    line-height:1.5;
    font-weight:600;
}

.price{
    margin:0 0 22px;

    font-size:42px;
    line-height:1.1;
    font-weight:800;

    color:var(--rm-orange);
}

.pricing-card ul{
    list-style:none;

    padding:0;
    margin:0 0 26px;

    text-align:left;
}

.pricing-card li{
    position:relative;

    padding:9px 0 9px 22px;

    color:var(--rm-muted);

    font-size:14px;
    line-height:1.6;

    border-bottom:1px solid #edf1f5;
}

.pricing-card li:last-child{
    border-bottom:0;
}

.pricing-card li::before{
    content:"✓";

    position:absolute;

    left:0;
    top:9px;

    color:var(--rm-blue);

    font-weight:800;
}

/* ================= MAINTENANCE CONTRACT ================= */

.maintenance{
    padding:90px 0;
    background:var(--rm-light);
}

.maintenance-card{
    background:var(--rm-white);

    border:1px solid var(--rm-border);
    border-radius:var(--rm-radius);

    overflow:hidden;

    box-shadow:var(--rm-shadow);

    margin-top:40px;
}

.maintenance-header{
    background:linear-gradient(
        135deg,
        var(--rm-blue-dark),
        var(--rm-blue)
    );

    color:#ffffff;

    padding:30px 25px;

    text-align:center;
}

.maintenance-header h3{
    margin:0 0 8px;

    font-size:28px;
    line-height:1.3;
    font-weight:800;
}

.maintenance-header p{
    margin:0;

    font-size:15px;
    line-height:1.6;

    opacity:.92;
}

.maintenance-table{
    width:100%;

    border-collapse:collapse;
}

.maintenance-table th{
    background:#eef5fc;

    padding:16px 14px;

    font-size:15px;
    font-weight:800;

    color:var(--rm-blue-dark);

    border-bottom:1px solid var(--rm-border);
}

.maintenance-table td{
    padding:15px 14px;

    font-size:14px;

    text-align:center;

    color:var(--rm-text);

    border-bottom:1px solid #edf1f5;
}

.maintenance-table tbody tr{
    transition:background .2s ease;
}

.maintenance-table tbody tr:hover{
    background:#f8fbff;
}

.maintenance-table tbody tr:last-child td{
    border-bottom:0;
}

.recommended{
    background:#fff6e9;

    color:#c76d00;

    font-weight:800;
}

/* Maintenance benefits */

.maintenance-benefits{
    display:grid;

    grid-template-columns:repeat(4, minmax(0, 1fr));

    gap:18px;

    padding:30px;

    background:#fafbfd;

    border-top:1px solid var(--rm-border);
}

.benefit{
    background:#ffffff;

    padding:20px 16px;

    border:1px solid var(--rm-border);
    border-radius:10px;

    text-align:center;

    font-size:14px;
    line-height:1.55;
    font-weight:700;

    color:var(--rm-blue-dark);

    box-shadow:0 4px 14px rgba(0,0,0,.04);
}

/* Maintenance note */

.maintenance-note{
    margin:30px;

    padding:20px 22px;

    background:#fff7e8;

    border:1px solid #f6dcae;
    border-left:5px solid var(--rm-orange);

    border-radius:10px;

    font-size:14px;
    line-height:1.75;

    color:#5f513e;
}

.maintenance-btn{

text-align:center;

padding-bottom:45px;

}

.booking-form{
    display:flex;

    flex-direction:column;

    gap:15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;

    padding:14px 15px;

    font-size:15px;

    line-height:1.5;

    color:var(--rm-text);

    background:#ffffff;

    border:1px solid #dbe3eb;

    border-radius:8px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder{
    color:#8996a3;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
    border-color:var(--rm-blue);

    box-shadow:0 0 0 3px rgba(0,87,184,.09);

    background:#ffffff;
}

.booking-form textarea{
    min-height:120px;

    resize:vertical;
}

.price-box{
    padding:20px;

    background:#f4f8fd;

    border:1px solid #cfe0f2;

    border-radius:10px;

    text-align:center;
}

.price-box h2{
    margin:8px 0 0;

    font-size:36px;
    line-height:1.15;
    font-weight:800;

    color:var(--rm-orange);
}

.submit-btn{
    width:100%;

    background:var(--rm-orange);

    color:#ffffff;

    padding:15px 20px;

    font-size:16px;

    font-weight:700;

    border:none;

    border-radius:8px;

    cursor:pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.submit-btn:hover{
    background:var(--rm-blue);

    transform:translateY(-1px);

    box-shadow:0 7px 16px rgba(0,0,0,.12);
}

.agree{
    display:flex;

    align-items:flex-start;

    gap:9px;

    margin-top:2px;

    font-size:13px;

    line-height:1.55;

    color:var(--rm-muted);
}

.agree input{
    width:auto;

    margin-top:4px;

    flex:0 0 auto;
}

#bookingMessage{
    display:none;

    margin-top:18px;

    padding:14px 16px;

    border-radius:8px;

    text-align:center;

    font-size:14px;

    line-height:1.6;

    font-weight:600;
}

#bookingMessage.success{
    background:#edf8f0;

    color:#176b35;

    border:1px solid #bfe5c9;
}

#bookingMessage.error{
    background:#fff0f0;

    color:#9b2525;

    border:1px solid #efc4c4;
}

#bookingBtn{
    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;
}

#bookingBtn:disabled{
    opacity:.6;
    cursor:not-allowed;

    transform:none;
    box-shadow:none;
}

/* ================= FOOTER ================= */

.site-footer{
    background:#062b63;

    color:#ffffff;

    margin-top:0;
}

.footer-grid{
    display:grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr
        1.15fr;

    gap:40px;

    padding:60px 0 45px;
}

/* Footer brand */

.footer-brand img{
    display:block;

    width:120px;
    height:auto;

    margin-bottom:18px;
}

.footer-brand h3{
    margin:0 0 12px;

    color:#ffffff;

    font-size:20px;
    line-height:1.35;
}

.footer-brand p{
    max-width:340px;

    margin:0 0 12px;

    color:rgba(255,255,255,.78);

    font-size:14px;
    line-height:1.7;
}

.footer-brand .footer-tagline{
    color:#ffffff;

    font-weight:700;
}

/* Footer links */

.footer-links h4,
.footer-contact h4{
    margin:0 0 18px;

    color:#ffffff;

    font-size:17px;
    line-height:1.4;
    font-weight:800;
}

.footer-links a{
    display:block;

    margin-bottom:10px;

    color:rgba(255,255,255,.76);

    font-size:14px;
    line-height:1.5;

    text-decoration:none;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.footer-links a:hover{
    color:#ffffff;

    padding-left:4px;
}

/* Footer contact */

.footer-contact p{
    margin:0 0 12px;

    color:rgba(255,255,255,.76);

    font-size:14px;
    line-height:1.65;
}

.footer-contact a{
    color:rgba(255,255,255,.84);

    text-decoration:none;

    transition:color .2s ease;
}

.footer-contact a:hover{
    color:#ffffff;
}

.footer-hours{
    padding-top:8px;

    border-top:1px solid rgba(255,255,255,.12);
}

/* Footer bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);

    background:#04234f;
}

.footer-bottom .container{
    min-height:65px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;
}

.footer-bottom p{
    margin:0;

    color:rgba(255,255,255,.65);

    font-size:13px;
}

.footer-bottom-links{
    display:flex;

    gap:18px;
}

.footer-bottom-links a{
    color:rgba(255,255,255,.78);

    font-size:13px;

    font-weight:600;

    text-decoration:none;
}

.footer-bottom-links a:hover{
    color:#ffffff;
}

/* =========================
   RESPONSIVE TOP CONTACT BAR
   ========================= */

@media (max-width: 992px){

    .top-contact{
        display:flex;
        flex-wrap:wrap;

        align-items:center;
        justify-content:space-between;

        gap:8px 20px;
    }

    .left-contact,
    .right-contact{
        display:flex;
        flex-wrap:wrap;

        align-items:center;

        gap:6px 16px;
    }

    .top-contact span{
        font-size:13px;
        line-height:1.5;
    }
}


@media (max-width: 767px){

    .top-header{
        padding:10px 0;
    }

    .top-contact{
        display:flex;
        flex-direction:column;

        align-items:flex-start;

        gap:3px;
    }

    .left-contact,
    .right-contact{
        width:100%;

        display:flex;
        flex-direction:column;

        align-items:flex-start;

        gap:2px;
    }

    .top-contact span{
        display:block;

        width:100%;

        font-size:12px;
        line-height:1.55;

        white-space:normal;
    }

}


@media (max-width: 480px){

    .top-header{
        padding:9px 0;
    }

    .top-contact{
        width:94%;
    }

    .top-contact span{
        font-size:11.5px;
        line-height:1.5;
    }

}

/* ================= GALLERY ================= */

.gallery {
    padding: 90px 0;
    background: #f8fafc;
}   

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* Gallery - Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 230px;
    }
}

/* FINAL BOOK SERVICE BUTTON ALIGNMENT */
.book-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;

    min-width:110px;
    height:48px;
    padding:0 20px !important;

    box-sizing:border-box;
}

/* ================= ACTIVE NAVIGATION ================= */

.nav-wrapper > ul > li > a {
    position: relative;
    transition: color 0.25s ease;
}

.nav-wrapper > ul > li > a.active {
    color: #f7941d !important;
    font-weight: 700;
}

.nav-wrapper > ul > li > a.active::after {
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    bottom: -7px;

    height: 2px;

    background: #f7941d;

    border-radius: 2px;

    transition: all 0.25s ease;
}

/* =========================================================
   RM ACELECT - FINAL SECTION BACKGROUND RHYTHM
   ========================================================= */

/* Light sections */
#about,
#aircon-brands,
#pricing,
#gallery,
#faq {
    background-color: #f5f8fc;
}

/* White sections */
#services,
#projects,
#maintenance-table,
#testimonials,
#contact {
    background-color: #ffffff;
}

/* Reduce bottom space before Gallery */
#maintenance-table {
    padding-bottom: 10px;
}

/* =========================================================
   MAINTENANCE TABLE - MOBILE SCROLL
   ========================================================= */

.maintenance-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.maintenance-table {
    width: 100%;
}

@media (max-width: 768px) {

    .maintenance-table-wrapper {
        overflow-x: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .maintenance-table {
        min-width: 680px;
    }

}