/* ============================================================
   REVOCRAFT BUILD LTD — Custom Stylesheet
   Stack: Bootstrap 5 + Remix Icons + Google Fonts
   ============================================================ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
    --rc-black:       #0d1117;
    --rc-dark:        #1e293b;
    --rc-navy:        #0f2a4a;
    --rc-blue:        #2563eb;
    --rc-blue-dark:   #1d4ed8;
    --rc-orange:      #f97316;
    --rc-orange-dark: #ea580c;
    --rc-light:       #f8fafc;
    --rc-grey:        #f1f5f9;
    --rc-border:      #e2e8f0;
    --rc-text:        #1e293b;
    --rc-muted:       #64748b;
    --rc-white:       #ffffff;

    --font-heading:   'Outfit', sans-serif;
    --font-body:      'Roboto', sans-serif;

    --transition:     all 0.3s ease;
    --shadow-sm:      0 1px 4px rgba(0,0,0,.08);
    --shadow:         0 4px 20px rgba(0,0,0,.10);
    --shadow-lg:      0 10px 40px rgba(0,0,0,.14);
    --shadow-xl:      0 24px 60px rgba(0,0,0,.18);

    --radius:         8px;
    --radius-lg:      14px;
    --radius-xl:      24px;
}

/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family:    var(--font-body);
    color:          var(--rc-text);
    background:     var(--rc-white);
    font-size:      16px;
    line-height:    1.7;
    overflow-x:     hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color:       var(--rc-dark);
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ── Utility ─────────────────────────────────────────────── */
.text-orange   { color: var(--rc-orange) !important; }
.text-blue     { color: var(--rc-blue)   !important; }
.bg-dark-rc    { background: var(--rc-black) !important; }
.bg-navy       { background: var(--rc-navy)  !important; }

.section-pad   { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Section Label ───────────────────────────────────────── */
.section-label {
    display:        inline-flex;
    align-items:    center;
    gap:            8px;
    font-family:    var(--font-heading);
    font-size:      .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color:          var(--rc-orange);
    margin-bottom:  14px;
}
.section-label::before {
    content:    '';
    display:    inline-block;
    width:      28px;
    height:     3px;
    background: var(--rc-orange);
    border-radius: 2px;
}

/* ── Section Heading ─────────────────────────────────────── */
.section-title {
    font-size:   2.25rem;
    font-weight: 600;
    color:       var(--rc-dark);
    margin-bottom: 16px;
}
.section-title span { color: var(--rc-orange); }

.section-sub {
    color:      var(--rc-muted);
    font-size:  1.05rem;
    max-width:  600px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-orange {
    background:  var(--rc-orange);
    color:       #fff;
    border:      2px solid var(--rc-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius);
    padding:     .6rem 1.6rem;
    transition:  var(--transition);
}
.btn-orange:hover, .btn-orange:focus {
    background:  var(--rc-orange-dark);
    border-color: var(--rc-orange-dark);
    color:       #fff;
    transform:   translateY(-2px);
    box-shadow:  0 8px 24px rgba(249,115,22,.35);
}

.btn-outline-orange {
    background:  transparent;
    color:       var(--rc-orange);
    border:      2px solid var(--rc-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius);
    padding:     .6rem 1.6rem;
    transition:  var(--transition);
}
.btn-outline-orange:hover, .btn-outline-orange:focus {
    background:  var(--rc-orange);
    color:       #fff;
    transform:   translateY(-2px);
}

.btn-outline-white {
    background:  transparent;
    color:       #fff;
    border:      2px solid rgba(255,255,255,.6);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius);
    padding:     .6rem 1.6rem;
    transition:  var(--transition);
}
.btn-outline-white:hover {
    background:  rgba(255,255,255,.12);
    border-color: #fff;
    color:       #fff;
}

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
    background: var(--rc-black);
    font-size:  .82rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.top-bar-link {
    color:       rgba(255,255,255,.75);
    text-decoration: none;
    transition:  color .2s;
}
.top-bar-link:hover { color: var(--rc-orange); }

/* ── Navbar ──────────────────────────────────────────────── */
.main-navbar {
    background:  var(--rc-black);
    padding:     14px 0;
    transition:  all .35s ease;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.main-navbar.scrolled {
    padding:    10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.35);
    background: rgba(13,17,23,.97);
    backdrop-filter: blur(8px);
}

/* Brand */
.brand-wrapper {
    display:     flex;
    align-items: center;
    gap:         12px;
}
.brand-icon {
    width:       42px;
    height:      42px;
    background:  var(--rc-orange);
    border-radius: var(--radius);
    display:     flex;
    align-items: center;
    justify-content: center;
    font-size:   1.4rem;
    color:       #fff;
    flex-shrink: 0;
}
.brand-text {
    display:        flex;
    flex-direction: column;
    line-height:    1;
}
.brand-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size:   1.15rem;
    color:       #fff;
    letter-spacing: .04em;
}
.brand-sub {
    font-family: var(--font-heading);
    font-size:   .65rem;
    font-weight: 600;
    color:       var(--rc-orange);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top:  2px;
}

/* Nav links */
.main-navbar .nav-link {
    color:       rgba(255,255,255,.8);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size:   .9rem;
    padding:     8px 14px;
    border-radius: var(--radius);
    transition:  var(--transition);
    position:    relative;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color:      var(--rc-orange);
}
.main-navbar .nav-link.active::after {
    content:    '';
    position:   absolute;
    bottom:     4px;
    left:       14px;
    right:      14px;
    height:     2px;
    background: var(--rc-orange);
    border-radius: 2px;
}

/* Dropdown */
.main-navbar .dropdown-menu {
    background:   var(--rc-dark);
    border:       1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding:      8px;
    min-width:    220px;
    box-shadow:   var(--shadow-xl);
}
.main-navbar .dropdown-item {
    color:        rgba(255,255,255,.8);
    font-family:  var(--font-heading);
    font-weight:  500;
    font-size:    .88rem;
    border-radius: var(--radius);
    padding:      10px 14px;
    transition:   var(--transition);
}
.main-navbar .dropdown-item:hover {
    background:  rgba(249,115,22,.15);
    color:       var(--rc-orange);
}
.main-navbar .dropdown-item i { color: var(--rc-orange); }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
    background:  linear-gradient(135deg, #0d1117 0%, #0f2a4a 60%, #0d1117 100%);
    padding:     90px 0 70px;
    position:    relative;
    overflow:    hidden;
}
.page-hero::before {
    content:    '';
    position:   absolute;
    inset:      0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
    color:       #fff;
    font-size:   2.75rem;
    font-weight: 600;
}
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a  { color: var(--rc-orange); }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Hero Section (Home) ─────────────────────────────────── */
.hero-section {
    min-height:  100vh;
    background:  linear-gradient(135deg, rgba(8, 14, 25, 0.85) 0%, rgba(13, 26, 48, 0.82) 50%, rgba(10, 16, 28, 0.88) 100%),
                 url('../images/hero-dream-home.jpg') center/cover no-repeat fixed;
    display:     flex;
    align-items: center;
    position:    relative;
    overflow:    hidden;
    padding:     120px 0 80px;
}
.hero-section::before {
    content:    '';
    position:   absolute;
    inset:      0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-section::after {
    content:    '';
    position:   absolute;
    right:      -200px;
    top:        -200px;
    width:      700px;
    height:     700px;
    background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-accent-line {
    display:      inline-flex;
    align-items:  center;
    gap:          10px;
    font-family:  var(--font-heading);
    font-size:    .78rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color:        var(--rc-orange);
    margin-bottom: 18px;
}
.hero-accent-line::before,
.hero-accent-line::after {
    content:    '';
    height:     2px;
    width:      32px;
    background: var(--rc-orange);
}
.hero-title {
    font-size:   3.6rem;
    font-weight: 600;
    color:       #fff;
    line-height: 1.12;
    margin-bottom: 22px;
}
.hero-title .highlight { color: var(--rc-orange); }
.hero-title .line-blue { color: #60a5fa; }
.hero-desc {
    font-size:   1.12rem;
    color:       rgba(255,255,255,.72);
    max-width:   560px;
    margin-bottom: 36px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust-badges {
    display:    flex;
    gap:        28px;
    flex-wrap:  wrap;
}
.hero-badge {
    display:    flex;
    align-items: center;
    gap:        8px;
    color:      rgba(255,255,255,.65);
    font-size:  .85rem;
    font-family: var(--font-heading);
    font-weight: 500;
}
.hero-badge i { color: var(--rc-orange); font-size: 1.1rem; }

/* Hero stats card */
.hero-stats-grid {
    display:               grid;
    grid-template-columns: 1fr 1fr;
    gap:                   16px;
}
.hero-stat-card {
    background:   rgba(255,255,255,.05);
    border:       1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding:      24px 20px;
    text-align:   center;
    backdrop-filter: blur(4px);
    transition:   var(--transition);
}
.hero-stat-card:hover {
    background:   rgba(249,115,22,.12);
    border-color: rgba(249,115,22,.3);
    transform:    translateY(-4px);
}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size:   2.4rem;
    font-weight: 600;
    color:       var(--rc-orange);
    display:     block;
    line-height: 1;
}
.hero-stat-label {
    font-family: var(--font-heading);
    font-size:   .78rem;
    font-weight: 600;
    color:       rgba(255,255,255,.6);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top:  6px;
    display:     block;
}
.hero-card-accent {
    background:  rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border:      1px solid rgba(255, 255, 255, 0.1);
    box-shadow:  0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: var(--radius-xl);
    padding:     32px;
}

/* ── About Intro ─────────────────────────────────────────── */
.about-img-wrapper {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    width:        100%;
    height:       480px;
    object-fit:   cover;
    box-shadow:   var(--shadow-xl);
}
.about-badge-float {
    position:    absolute;
    bottom:      -24px;
    left:        -24px;
    background:  var(--rc-orange);
    color:       #fff;
    border-radius: var(--radius-lg);
    padding:     20px 24px;
    box-shadow:  var(--shadow-lg);
    text-align:  center;
    min-width:   130px;
}
.about-badge-float .num {
    font-family: var(--font-heading);
    font-size:   2rem;
    font-weight: 600;
    display:     block;
    line-height: 1;
}
.about-badge-float .lbl {
    font-family: var(--font-heading);
    font-size:   .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity:     .9;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    display:    flex;
    align-items: center;
    gap:        10px;
    padding:    6px 0;
    color:      var(--rc-text);
    font-weight: 500;
}
.check-list li i {
    color:      var(--rc-orange);
    font-size:  1.1rem;
    flex-shrink: 0;
}

/* ── Service Cards ───────────────────────────────────────── */
.service-card {
    background:   var(--rc-white);
    border:       1px solid var(--rc-border);
    border-radius: var(--radius-lg);
    padding:      32px 26px;
    height:       100%;
    transition:   var(--transition);
    position:     relative;
    overflow:     hidden;
    text-align:   center;
}
.service-card::before {
    content:    '';
    position:   absolute;
    top:        0;
    left:       0;
    right:      0;
    height:     3px;
    background: var(--rc-orange);
    transform:  scaleX(0);
    transition: transform .35s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width:       60px;
    height:      60px;
    background:  rgba(249,115,22,.1);
    border-radius: var(--radius-lg);
    display:     flex;
    align-items: center;
    justify-content: center;
    font-size:   1.7rem;
    color:       var(--rc-orange);
    margin:      0 auto 18px auto;
    transition:  var(--transition);
}
.service-card:hover .service-icon {
    background: var(--rc-orange);
    color:      #fff;
}
.service-card h4 {
    font-size:   1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-card p {
    font-size:  .9rem;
    color:      var(--rc-muted);
    margin:     0;
}
.service-link {
    font-family: var(--font-heading);
    font-size:   .82rem;
    font-weight: 600;
    color:       var(--rc-orange);
    text-transform: uppercase;
    letter-spacing: .06em;
    display:     inline-flex;
    align-items: center;
    gap:         4px;
    margin-top:  14px;
}
.service-link i { transition: transform .25s; }
.service-link:hover i { transform: translateX(4px); }

/* ── Why Choose Us ───────────────────────────────────────── */
.why-card {
    display:    flex;
    gap:        20px;
    align-items: flex-start;
    padding:    30px 24px;
    background: var(--rc-white);
    border:     1px solid transparent;
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    height:     100%;
}
.why-card:hover { 
    box-shadow: var(--shadow-lg); 
    transform: translateY(-5px); 
    border-color: rgba(249,115,22,.15);
}
.why-icon {
    width:       56px;
    height:      56px;
    background:  rgba(249,115,22,.1);
    box-shadow:  inset 0 0 0 1px rgba(249,115,22,.2);
    border-radius: 50%;
    display:     flex;
    align-items: center;
    justify-content: center;
    font-size:   1.6rem;
    color:       var(--rc-orange);
    flex-shrink: 0;
    transition:  var(--transition);
}
.why-card:hover .why-icon {
    background:  var(--rc-orange);
    color:       #fff;
}
.why-card h5 { 
    font-family: var(--font-heading);
    font-weight: 600; 
    font-size:   1.1rem;
    margin-bottom: 10px; 
    color:       var(--rc-navy);
}
.why-card p { 
    color: var(--rc-muted); 
    font-size: .95rem; 
    line-height: 1.6;
    margin: 0; 
}

/* ── Testimonial Stat Cards ────────────────────────────────── */
.t-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.t-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rc-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}
.t-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.t-stat-card:hover::before {
    transform: scaleX(1);
}
.t-stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(239, 108, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--rc-orange);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.t-stat-card:hover .t-stat-icon {
    background: var(--rc-orange);
    color: #fff;
    transform: scale(1.1);
}
.t-stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--rc-navy);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.t-stat-label {
    font-weight: 600;
    color: var(--rc-dark);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.t-stat-meta {
    font-size: 0.85rem;
    color: var(--rc-muted);
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--rc-navy) 0%, #1e3a5f 100%);
    padding:    30px 0;
}
.stat-item { 
    text-align: center; 
    padding:    10px;
    transition: var(--transition);
}
.stat-item:hover {
    transform: translateY(-3px);
}
.stat-icon-wrapper i {
    font-size:  2.6rem;
    background: linear-gradient(135deg, var(--rc-orange) 0%, #ffab40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(249,115,22,0.25));
    display: inline-block;
    margin-bottom: 5px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size:   2.8rem;
    font-weight: 700;
    color:       var(--rc-white);
    display:     block;
    line-height: 1;
    margin-top:  5px;
}
.stat-suffix { 
    font-size: 1.8rem; 
    color: var(--rc-orange);
}
.stat-label {
    font-family:    var(--font-heading);
    font-size:      .8rem;
    font-weight:    600;
    color:          rgba(255,255,255,.75);
    letter-spacing: .15em;
    text-transform: uppercase;
    display:        block;
    margin-top:     5px;
}
    margin-top:     8px;
    display:        block;
}
.stat-divider {
    width:      1px;
    height:     60px;
    background: rgba(255,255,255,.12);
    margin:     auto;
}

/* ── Project Gallery ─────────────────────────────────────── */
.project-card {
    background:    var(--rc-white);
    border:        1px solid var(--rc-border);
    border-radius: var(--radius-xl);
    overflow:      hidden;
    position:      relative;
    box-shadow:    var(--shadow-sm);
    transition:    var(--transition);
}
.project-card:hover { 
    box-shadow:   var(--shadow-xl); 
    transform:    translateY(-6px); 
    border-color: rgba(249,115,22,0.15);
}

/* ── Policy / Legal Pages ─────────────────────────────────── */
.policy-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--rc-border);
}
.policy-header {
    border-bottom: 2px solid rgba(249, 115, 22, 0.15);
    padding-bottom: 30px;
    margin-bottom: 40px;
}
.policy-date {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--rc-orange);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .policy-wrapper { padding: 30px 20px; }
}
.policy-intro {
    font-size: 1.1rem;
    color: var(--rc-navy);
    line-height: 1.6;
}
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--rc-border);
}
.policy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.policy-section h4 {
    font-weight: 700;
    color: var(--rc-navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.policy-section p {
    color: var(--rc-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.policy-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--rc-muted);
    line-height: 1.5;
}
.policy-list li i {
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 2px;
}
.policy-list li span strong {
    color: var(--rc-navy);
}
.policy-contact-card {
    background: var(--rc-light);
    border: 1px solid var(--rc-border);
    border-radius: 16px;
    padding: 24px;
}
.policy-contact-card h5 {
    color: var(--rc-navy);
    font-weight: 700;
}

.project-image-wrapper {
    overflow: hidden;
    position: relative;
}
.project-card img {
    width:      100%;
    height:     280px;
    object-fit: cover;
    display:    block;
    transition: transform .6s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-info {
    padding:    24px 20px;
    background: var(--rc-white);
    position:   relative;
    z-index:    2;
}
.project-info h5 { 
    color: var(--rc-navy); 
    font-weight: 600; 
    font-size: 1.15rem; 
    margin-bottom: 6px; 
    font-family: var(--font-heading);
}
.project-info span {
    font-family:    var(--font-heading);
    font-size:      .85rem;
    color:          var(--rc-muted);
    font-weight:    500;
}
.project-info span i { color: var(--rc-orange); }
.filter-tabs { gap: 8px; }
.filter-tabs .btn {
    font-family: var(--font-heading);
    font-size:   .82rem;
    font-weight: 600;
    border-radius: 100px;
    padding:     .45rem 1.2rem;
    transition:  var(--transition);
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-card {
    background:   var(--rc-white);
    border:       1px solid var(--rc-border);
    border-radius: var(--radius-xl);
    padding:      32px 28px;
    height:       100%;
    transition:   var(--transition);
    position:     relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.quote-icon {
    font-size:   2.5rem;
    color:       var(--rc-orange);
    opacity:     .3;
    line-height: 1;
    margin-bottom: 12px;
}
.testimonial-text {
    color:      var(--rc-text);
    font-size:  .96rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.stars i { color: #f59e0b; font-size: .9rem; }
.reviewer-avatar {
    width:       48px;
    height:      48px;
    border-radius: 50%;
    object-fit:  cover;
    background:  var(--rc-grey);
    display:     flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size:   1.1rem;
    color:       var(--rc-orange);
    flex-shrink: 0;
}
.reviewer-name   { font-weight: 600; font-size: .95rem; margin-bottom: 2px; }
.reviewer-area   { font-size: .8rem; color: var(--rc-muted); }

/* ── Trust Badges ────────────────────────────────────────── */
.trust-bar {
    position:    relative;
    z-index:     10;
    margin-top:  -40px; /* Pulls it up slightly over the hero section */
}
.trust-bar-wrapper {
    background:  linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(9, 14, 23, 0.98) 100%);
    backdrop-filter: blur(16px);
    border:      1px solid rgba(255, 255, 255, 0.08);
    border-top:  1px solid rgba(255, 255, 255, 0.15); /* Sleek highlight on top */
    border-radius: var(--radius-xl);
    box-shadow:  0 20px 50px rgba(0, 0, 0, 0.25);
    padding:     24px 20px;
}
.trust-item {
    text-align: center;
    color:      rgba(255,255,255,.7);
    transition: var(--transition);
    padding:    0 10px;
    position:   relative;
}
@media (min-width: 768px) {
    .trust-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 15%;
        bottom: 15%;
        right: 0;
        width: 1px;
        background: rgba(255,255,255,0.08);
    }
}
.trust-item:hover { color: #fff; transform: translateY(-3px); }
.trust-item i {
    font-size:   2.2rem;
    background:  linear-gradient(135deg, var(--rc-orange) 0%, #ffab40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display:     inline-block;
    margin-bottom: 8px;
    filter:      drop-shadow(0 4px 12px rgba(249,115,22,0.25));
}
.trust-item strong {
    display:     block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size:   1rem;
    color:       #fff;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}
.trust-item span {
    font-size:  .8rem;
    color:      #cbd5e1;
}

/* ── Areas ───────────────────────────────────────────────── */
.area-pill {
    display:      inline-flex;
    align-items:  center;
    gap:          6px;
    background:   var(--rc-white);
    border:       1px solid var(--rc-border);
    border-radius: 100px;
    padding:      8px 18px;
    font-family:  var(--font-heading);
    font-size:    .85rem;
    font-weight:  600;
    color:        var(--rc-text);
    transition:   var(--transition);
}
.area-pill i   { color: var(--rc-orange); }
.area-pill:hover {
    background:  var(--rc-orange);
    border-color: var(--rc-orange);
    color:       #fff;
    transform:   translateY(-2px);
}
.area-pill:hover i { color: #fff; }

/* ── Quote / Contact Forms ───────────────────────────────── */
.quote-section {
    background: linear-gradient(135deg, var(--rc-black) 0%, #0f2a4a 100%);
    padding:    90px 0;
    position:   relative;
    overflow:   hidden;
}
.quote-section::before {
    content:    '';
    position:   absolute;
    left:       -300px;
    bottom:     -300px;
    width:      700px;
    height:     700px;
    background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 60%);
    pointer-events: none;
}
.form-card {
    background:   rgba(255,255,255,.03);
    border:       1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding:      40px;
    backdrop-filter: blur(6px);
}
.form-card .form-label {
    color:       rgba(255,255,255,.85);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size:   .88rem;
    margin-bottom: 6px;
}
.form-card .form-control,
.form-card .form-select {
    background:  rgba(255,255,255,.06);
    border:      1px solid rgba(255,255,255,.12);
    color:       #fff;
    border-radius: var(--radius);
    padding:     .65rem 1rem;
    font-size:   .93rem;
    transition:  var(--transition);
}
.form-card .form-control::placeholder { color: rgba(255,255,255,.35); }
.form-card .form-control:focus,
.form-card .form-select:focus {
    background:  rgba(255,255,255,.1);
    border-color: var(--rc-orange);
    color:       #fff;
    box-shadow:  0 0 0 .2rem rgba(249,115,22,.2);
}
.form-card .form-select option { background: #1e293b; color: #fff; }

/* Light form (contact page) */
.form-light .form-control,
.form-light .form-select {
    background:   var(--rc-white);
    border:       1px solid var(--rc-border);
    color:        var(--rc-text);
    border-radius: var(--radius);
    padding:      .65rem 1rem;
    font-size:    .93rem;
    transition:   var(--transition);
}
.form-light .form-control:focus,
.form-light .form-select:focus {
    border-color: var(--rc-orange);
    box-shadow:   0 0 0 .2rem rgba(249,115,22,.15);
}
.form-light .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size:   .88rem;
    color:       var(--rc-dark);
    margin-bottom: 6px;
}

/* ── Contact Info Card ───────────────────────────────────── */
.contact-info-card {
    background:   linear-gradient(135deg, var(--rc-navy) 0%, #1e3a5f 100%);
    border-radius: var(--radius-xl);
    padding:      40px;
    height:       100%;
}
.contact-info-card h3 { color: #fff; }
.contact-detail {
    display:    flex;
    gap:        16px;
    align-items: flex-start;
    padding:    16px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
    width:       46px;
    height:      46px;
    background:  rgba(249,115,22,.2);
    border-radius: var(--radius);
    display:     flex;
    align-items: center;
    justify-content: center;
    font-size:   1.3rem;
    color:       var(--rc-orange);
    flex-shrink: 0;
}
.contact-detail strong { color: #fff; display: block; font-size: .85rem; font-family: var(--font-heading); letter-spacing: .08em; text-transform: uppercase; opacity: .6; margin-bottom: 4px; }
.contact-detail a,
.contact-detail span { color: rgba(255,255,255,.9); font-weight: 500; text-decoration: none; }
.contact-detail a:hover { color: var(--rc-orange); }

/* ── Map ─────────────────────────────────────────────────── */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow:      hidden;
    box-shadow:    var(--shadow-lg);
}
.map-wrapper iframe { display: block; border: 0; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background:   var(--rc-black);
    border-top:   3px solid var(--rc-orange);
    padding-top:  70px;
    padding-bottom: 0;
}
.footer-brand-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size:   1.4rem;
    color:       #fff;
    letter-spacing: .04em;
}
.footer-brand-sub {
    font-family:    var(--font-heading);
    font-size:      .65rem;
    color:          var(--rc-orange);
    letter-spacing: .14em;
    text-transform: uppercase;
}
.footer-desc {
    color:      rgba(255,255,255,.6);
    font-size:  .9rem;
    line-height: 1.75;
    margin:     16px 0 24px;
}
.footer-title {
    font-family:    var(--font-heading);
    font-size:      .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color:          var(--rc-orange);
    margin-bottom:  20px;
    position:       relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content:    '';
    position:   absolute;
    bottom:     0;
    left:       0;
    width:      30px;
    height:     2px;
    background: var(--rc-orange);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color:       rgba(255,255,255,.6);
    font-size:   .9rem;
    display:     inline-flex;
    align-items: center;
    gap:         6px;
    transition:  var(--transition);
}
.footer-links a:hover { color: var(--rc-orange); padding-left: 4px; }
.footer-links a i { font-size: .75rem; color: var(--rc-orange); }

.footer-contact-item {
    display:    flex;
    gap:        12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color:      rgba(255,255,255,.65);
    font-size:  .9rem;
}
.footer-contact-item i {
    color:      var(--rc-orange);
    font-size:  1.05rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item a {
    color:      rgba(255,255,255,.75);
    text-decoration: none;
}
.footer-contact-item a:hover { color: var(--rc-orange); }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
    width:      40px;
    height:     40px;
    background: rgba(255,255,255,.06);
    border:     1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display:    flex;
    align-items: center;
    justify-content: center;
    color:      rgba(255,255,255,.7);
    font-size:  1rem;
    transition: var(--transition);
}
.social-btn:hover {
    background:  var(--rc-orange);
    border-color: var(--rc-orange);
    color:       #fff;
    transform:   translateY(-3px);
}
.footer-bottom {
    margin-top:  50px;
    padding:     20px 0;
    border-top:  1px solid rgba(255,255,255,.08);
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--rc-orange); }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
    position:    fixed;
    bottom:      30px;
    right:       30px;
    width:       60px;
    height:      60px;
    background:  #25d366;
    color:       #fff;
    border-radius: 50%;
    display:     flex;
    align-items: center;
    justify-content: center;
    font-size:   1.75rem;
    z-index:     9999;
    box-shadow:  0 6px 28px rgba(37,211,102,.5);
    transition:  var(--transition);
    animation:   waPulse 2.5s ease infinite;
}
.whatsapp-float:hover {
    background:  #1da851;
    color:       #fff;
    transform:   scale(1.1);
    box-shadow:  0 10px 36px rgba(37,211,102,.65);
}
@keyframes waPulse {
    0%   { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
    70%  { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-tooltip {
    position:    absolute;
    right:       70px;
    white-space: nowrap;
    background:  #1e293b;
    color:       #fff;
    font-family: var(--font-heading);
    font-size:   .78rem;
    font-weight: 600;
    padding:     6px 14px;
    border-radius: 100px;
    opacity:     0;
    pointer-events: none;
    transition:  opacity .25s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner-card {
    background: linear-gradient(135deg, var(--rc-orange) 0%, var(--rc-orange-dark) 100%);
    padding:    36px 48px;
    border-radius: var(--radius-xl);
    position:   relative;
    overflow:   hidden;
    box-shadow: 0 12px 30px rgba(249,115,22, 0.2);
    display:    flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
.cta-banner-card::before {
    content:    '';
    position:   absolute;
    right:      -10vw;
    top:        -50%;
    width:      400px;
    height:     400px;
    background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 60%);
    border-radius: 50%;
}
.cta-banner-text { position: relative; z-index: 2; flex: 1 1 400px; }
.cta-banner-text h3 { color: #fff; font-weight: 700; margin-bottom: 6px; font-size: 1.75rem; letter-spacing: -0.02em; }
.cta-banner-text p  { color: rgba(255,255,255,.9); font-size: 1rem; margin: 0; max-width: 550px; }
.cta-banner-actions { position: relative; z-index: 2; display: flex; gap: 16px; flex-wrap: wrap; }

.btn-cta-white {
    background:   #fff;
    color:        var(--rc-orange);
    border:       2px solid #fff;
    font-family:  var(--font-heading);
    font-weight: 600;
    border-radius: 100px;
    padding:      .6rem 1.6rem;
    transition:   var(--transition);
    display:      inline-flex;
    align-items:  center;
    justify-content: center;
    text-decoration: none;
}
.btn-cta-white:hover {
    background:   transparent;
    color:        #fff;
    transform:    translateY(-2px);
}
.btn-outline-white {
    display:      inline-flex;
    align-items:  center;
    justify-content: center;
    text-decoration: none;
}
@media (max-width: 991px) {
    .cta-banner-card { padding: 32px 30px; text-align: center; flex-direction: column; }
    .cta-banner-text p { margin-left: auto; margin-right: auto; }
    .cta-banner-actions { justify-content: center; width: 100%; }
}

/* ── Process Steps ───────────────────────────────────────── */
.process-row {
    position: relative;
    z-index: 1;
}
.process-line {
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, rgba(239, 108, 0, 0.1), rgba(239, 108, 0, 0.5), rgba(239, 108, 0, 0.1));
    z-index: -1;
}
.process-card {
    text-align: center;
    padding: 20px 15px;
    transition: all 0.3s ease;
    border-radius: 16px;
    background: transparent;
}
.process-card:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}
.process-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto;
}
.process-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 2px solid rgba(239, 108, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--rc-orange);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(239, 108, 0, 0.08);
}
.process-card:hover .process-icon {
    background: var(--rc-orange);
    color: #fff;
    border-color: var(--rc-orange);
}
.process-step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 34px;
    height: 34px;
    background: var(--rc-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid #fff;
    transition: all 0.3s ease;
}
.process-card:hover .process-step-badge {
    background: var(--rc-dark);
    transform: scale(1.1);
}
.process-card h5 {
    font-weight: 700;
    color: var(--rc-dark);
}
.process-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Page Specific: About ────────────────────────────────── */
.team-card {
    border-radius: var(--radius-lg);
    overflow:      hidden;
    background:    var(--rc-white);
    border:        1px solid var(--rc-border);
    text-align:    center;
    transition:    var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card img  { width: 100%; height: 240px; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h5 { font-weight: 600; margin-bottom: 4px; }
.team-card-body span { font-size: .82rem; color: var(--rc-orange); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-heading); }

/* ── Page Specific: Services full list ───────────────────── */
.service-full-card {
    background:   var(--rc-white);
    border:       1px solid var(--rc-border);
    border-radius: var(--radius-xl);
    overflow:      hidden;
    transition:    var(--transition);
    height:        100%;
}
.service-full-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.service-full-img {
    width:      100%;
    height:     220px;
    object-fit: cover;
    display:    block;
    transition: transform .4s ease;
}
.service-full-card:hover .service-full-img { transform: scale(1.04); }
.sfci-wrap { overflow: hidden; }
.service-full-body { padding: 26px; }
.service-full-body h4 { font-weight: 600; margin-bottom: 10px; }
.service-full-body p  { font-size: .9rem; color: var(--rc-muted); }

/* ── Badges / Pills ──────────────────────────────────────── */
.badge-orange {
    background:  rgba(249,115,22,.12);
    color:       var(--rc-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size:   .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding:     5px 12px;
    border-radius: 100px;
}
.badge-blue {
    background:  rgba(37,99,235,.12);
    color:       var(--rc-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size:   .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding:     5px 12px;
    border-radius: 100px;
}

/* ── Alert customisation ─────────────────────────────────── */
.alert-success-rc {
    background: rgba(34,197,94,.1);
    border:     1px solid rgba(34,197,94,.3);
    color:      #166534;
    border-radius: var(--radius);
    padding:    16px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
}
.alert-danger-rc {
    background: rgba(239,68,68,.1);
    border:     1px solid rgba(239,68,68,.3);
    color:      #991b1b;
    border-radius: var(--radius);
    padding:    16px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ── Scroll-to-top ───────────────────────────────────────── */
#scrollTop {
    position:    fixed;
    bottom:      100px;
    right:       30px;
    width:       44px;
    height:      44px;
    background:  var(--rc-dark);
    color:       #fff;
    border:      none;
    border-radius: var(--radius);
    display:     flex;
    align-items: center;
    justify-content: center;
    font-size:   1.1rem;
    cursor:      pointer;
    opacity:     0;
    transform:   translateY(10px);
    transition:  var(--transition);
    z-index:     8888;
    box-shadow:  var(--shadow);
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--rc-orange); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .section-title   { font-size: 1.85rem; }
    .hero-title      { font-size: 2.6rem; }
    .main-navbar .navbar-collapse {
        background:   rgba(13,17,23,.98);
        border-radius: var(--radius-lg);
        margin-top:   12px;
        padding:      16px;
        border:       1px solid rgba(255,255,255,.08);
    }
    .hero-stats-grid { grid-template-columns: 1fr 1fr; }
    .about-badge-float { bottom: -16px; left: 0; }
}

@media (max-width: 767.98px) {
    .section-pad   { padding: 60px 0; }
    .hero-title    { font-size: 2rem; }
    .hero-section  { padding: 100px 0 60px; min-height: auto; }
    .form-card     { padding: 24px 20px; }
    .hero-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-stat-number { font-size: 1.8rem; }
    .stat-number   { font-size: 2.2rem; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    #scrollTop      { bottom: 90px; right: 20px; }
    .page-hero h1   { font-size: 2rem; }
    .contact-info-card { padding: 28px 20px; }
}

@media (max-width: 575.98px) {
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; text-align: center; }
    .hero-trust-badges { gap: 14px; }
}
