body {
    font-family: 'Nunito Sans', sans-serif !important;
    background: #f5f6f8;
    color: #1c2230;
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
    font-size: 1rem;
    color: #4a5568;
}

ul,
ol {
    margin: 0 !important;
    padding-left: 0 !important;
    list-style-type: none !important;
}

a {
    text-decoration: none !important;
}

section {
    padding: 50px 0;
	overflow-x: hidden;
}

section.gold {
    padding: 50px 0;
    background: #C9922A;
}

section p:last-child {
    margin-bottom: 0;
}

.section-label {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0074d6;
/*     background: rgba(232, 71, 10, 0.09); */
/*     padding: 4px 14px; */
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-heading {
    color: #1c2230;
    margin-bottom: 16px;
}

.section-heading span {
    color: #e8470a;
}

.section-description {
    width: 100%;
    max-width: 620px;
    margin: 0 auto 10px;
}

.section-pad.bg-white {
    background: #fff;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: var(--bs-gutter-x, 7rem);
    padding-left: var(--bs-gutter-x, 7rem);
}

.form-bg {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px 0px #bbb;
}

.form-bg h3 {
	margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.28s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: #e8470a;
    color: #fff;
    border-color: #e8470a;
}

.btn-primary:hover {
    background: #c93a05;
    border-color: #c93a05;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 71, 10, 0.35);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #1c2230;
    border-color: #1c2230;
}

.btn-secondary:hover {
    background: #1c2230;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
    background: #fff;
    color: #1c2230;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #e8470a;
    border-color: #fff;
    font-weight: 700;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #e8470a;
}

/* Topbar */
.topbar,
.bottombar {
	pointer-events: none;
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
}

.topbar {
	top: 4px;
	width: 89%;
	height: 11px;
	display: block;
	background: #111827;
	/* Hack to style the browser UI while making it invisible to the user */
	mask-image: linear-gradient(to right, transparent, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, transparent);
}
.top-bar {
  padding: 12px 0;
  background: #111827;
	text-align: right;
}

.top-bar-link {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.top-bar-link:hover {
  color: #e8470a;
}

.top-bar-link i,
.top-bar-text i {
  color: #e8470a;
}

.top-bar-text {
  color: white;
  font-size: 0.875rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* TrustATrader Review Badge */
.top-bar-review-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 4px 12px;
  text-decoration: none;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}

.top-bar-review-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.review-badge-platform {
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.review-badge-stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 0.85rem;
  line-height: 1;
}

.review-badge-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.review-badge-arrow {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 2px;
}

/* NAVIGATION */
.navbar {
    z-index: 999;
    width: 100%;    padding: 7px 0px;
    box-shadow: 0px 10px 10px -10px #bbb;
    background: #fff;
}

.navbar .logo {
    height: 70px;
    transition: all 0.3s;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.pages nav {
    position: fixed;
    z-index: 999;
    width: 100%;
    padding: 30px;
    background: #007d2e;
}

.navbar-toggler {
    padding: 0 !important;
	border: 0;
}

.navbar-light .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%28232, 71, 10, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler i.fa-solid.fa-bars {
    color: #000;
}

.nav-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #1c2230;
    padding: 8px 15px;
    margin: 0 10px;
    border-radius: 5px;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}

.nav-link:hover {
    color: #e8470a !important;
    background: rgba(232, 71, 10, 0.07);
    transition: .2s;
}

.nav-link.active {
    font-weight: 600;
    color: #e8470a !important;
}

.dropdown-menu {
    background: #fff;
    width: unset;
    box-shadow: 0px 10px 10px -3px #555;
    border: 0;
}

.dropdown-menu a {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #1c2230 !important;
    font-weight: 500;
    font-style: normal;
    border-bottom: 1px solid #002d4530;
    padding: 10px 18px;
    transition: .2s;
}

.dropdown-menu a:hover {
    background: #f5f6f8;
    color: #e8470a !important;
    transition: .2s;
}

.dropdown-menu a.active {
    background: #fff;
    color: #e8470a !important;
    font-weight: 600;
    transition: .2s;
}

.dropdown-menu .nav-item {
    margin: 0;
}

.dropdown-menu.depth_1 {
    position: absolute;
    left: 100%;
    top: -40%;
    border-radius: 0 .25rem .25rem 0;
    box-shadow: unset;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #0a7f2f;
    background-color: unset;
}

.nav-item {
    position: relative;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 767.9px) {
    .navbar {
        padding: 22px 0;
    }

    .navbar-nav {
        text-align: center;
        margin-bottom: 0;
        align-items: flex-start;
    }

    .navbar-nav {
        margin-top: 0;
        padding-bottom: 2rem;
        padding-top: 50px;
        padding-bottom: 10px;
    }

    .logo-mobile {
        padding: 0;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        height: 60px;
        top: 50%;
        transform: translate(0, -50%);
        transition: all .3s;
    }

    .nav-item {
        margin: 5px 0;
        width: 100%;
    }

    .nav-link {
        font-size: 120%;
        margin-bottom: 15px;
        text-align: center;
        margin: 0;
    }

    .nav-link:hover {
        background: transparent;
    }

    ul.dropdown-menu {
        font-size: 100%;
        text-align: center;
        border: none;
        padding: 0;
        box-shadow: unset;
    }

    ul.dropdown-menu li {
        font-size: 100%;
        padding: unset;
    }

    ul.dropdown-menu li a {
        font-size: 120%;
        border-bottom: unset;
        padding: 0;
        margin: 15px 0 5px;
    }

    .dropdown-menu a {
        background: transparent !important;
    }

    .logo-wrap {
        position: relative;
        width: 100%;
    }

}


/* Hero Section */
.hero {
    background-image: url('./assets/img/home-hero-bg.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 34, 48, 0.92) 0%, rgba(37, 48, 71, 0.88) 55%, rgba(26, 58, 92, 0.82) 100%);
    z-index: 0;
}

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

.hero-badge {
    color: #e8470a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 10px;
	font-size: 400%;
}

.hero h1 span {
    color: #e8470a;
}

.hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 110%;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Split Layout */
.hero.hero-split {
    background-image: none;
    padding: 0;
    display: flex;
    min-height: 600px;
}

.hero.hero-split::before {
    display: none;
}

.hero-split-left {
    background: #1c2230;
    width: 50%;
    display: flex;
    align-items: center;
    padding-right: var(--bs-gutter-x, 5rem);
    padding-left: var(--bs-gutter-x, 5rem);
    flex-shrink: 0;
	min-height: 75vh;
}

.hero-split-inner {
    width: 100%;
}

.hero-split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-split-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 767px) {
    .hero.hero-split {
        display: block;
        position: relative;
        min-height: 520px;
    }

    .hero-split-right {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .hero-split-left {
        background: linear-gradient(135deg, rgba(28,34,48,0.82) 0%, rgba(28,34,48,0.62) 100%);
        width: 100%;
        position: relative;
        z-index: 1;
        padding: clamp(60px, 10vh, 90px) clamp(16px, 4vw, 32px) clamp(50px, 8vh, 70px);
        min-height: 520px;
    }
}

section.bg-1 {
    background: #1580d9;
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

section.bg-1 h2 {
	color: #fff;
    margin-bottom: 0 !important;
}

.accreditations img {
    height: 85px;
    margin-right: 10px;
    background: #1c2230;
    padding: 10px;
    border-radius: 10px;
}

.br-10 {
	border-radius: 10px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, #1c2230 0%, #253047 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("./assets/img/pages-hero-shape.png");
}

.page-hero h1 {
    color: #fff;
	font-size: 400%;
	text-align: center;
    margin-top: 0;
	margin-bottom: 30px;
}

.page-hero h1 span {
    color: #e8470a;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin-top: 12px;
	text-align: center;
}


/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fadeup {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

.animate-fadeleft {
    opacity: 0;
    animation: fadeInLeft 0.7s ease forwards;
}

.animate-faderight {
    opacity: 0;
    animation: fadeInRight 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---- SPLIT SECTION (img + content, used across all pages) ---- */
.split-section {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.split-section--reverse {
    flex-direction: row-reverse;
}

.split-col {
    flex: 1 1 300px;
    min-width: 0;
}

@media (max-width: 767.9px) {
    .split-section {
        flex-direction: column;
        gap: 28px;
    }
}


/* GALLERY */

.gallery .col-12 {
	padding: 0;
}
.gallery .row {
	padding: 0;
}

.gallery-img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1 / 1;
	display: block;
	border-radius: 15px;
}

/* END GALLERY */

/* MAIN */

/* ---- ABOUT SECTION ---- */
.about-section {
    background: #fff;
}

.about-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(28, 34, 48, 0.14);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #e8470a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 16px;
}

.about-checks {
    margin: 22px 0 !important;
}

.about-checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 3px 0;
    font-weight: 600;
    color: #1c2230;
}

.about-checks li i {
    color: #e8470a;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---- CORE SERVICES ---- */
.services-section {
    background: #f5f6f8;
}

.services-grid {
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(28, 34, 48, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8470a, #1a7fc1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(28, 34, 48, 0.13);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 58px;
    height: 58px;
    background: rgba(232, 71, 10, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #e8470a;
    transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
    background: #e8470a;
    color: #fff;
    transform: scale(1.08);
}

.service-card h3 {
    color: #1c2230;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

ul.tick {
	list-style: none;
    margin-left: 0px;
	column-count: 3;
}

ul.tick li {
    background: #f5f6f8;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

ul.tick li:before {
	content: '✓';
	margin-right: 15px;
	font-size: 150%;
	color: #0074d6;
}

.columns-1 {
	column-count: 1;
}

.columns-2 {
	column-count: 2!important;
}

.columns-3 {
	column-count: 3;
}


@media (max-width: 992px) {
	.columns-2 {
		column-count: 1!important;
	}
}

/* ---- FULL SERVICE LIST ---- */

.services-list-grid {
    margin-top: 30px;
}

.service-list-item {
    padding: 15px;
    background: #f5f6f8;
    border-radius: 8px;
    font-size: 140%;
	text-align: center;
}

/* ---- WHY CHOOSE US ---- */
.why-section {
    background: #1c2230;
}

.why-section .section-heading {
    color: #fff;
}

.why-section .section-heading span {
    color: #e8470a;
}

.why-grid {
    margin-top: 40px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 36px 28px;
    transition: background 0.3s, transform 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
}

.why-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(232, 71, 10, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.why-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

/* ---- CTA STRIP ---- */
.cta-strip {
    background: linear-gradient(135deg, #e8470a 0%, #c93a05 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.cta-strip h2 {
    color: #fff;
    margin-bottom: 14px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    font-size: 1.05rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-strip-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

/* ---- REVIEWS ---- */
.reviews-section {
    background: #f5f6f8;
}

.reviews-grid {
    margin-top: 36px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 14px rgba(28, 34, 48, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(28, 34, 48, 0.13);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.review-score {
    font-size: 0.8rem;
    color: #888;
    font-weight: 700;
    margin-left: 6px;
}

.review-text {
    font-size: 0.93rem;
    color: #4a5568;
    line-height: 1.65;
    flex: 1;
    font-style: italic;
    margin-bottom: 18px;
}

.review-author {
    font-weight: 700;
    color: #1c2230;
    font-size: 0.88rem;
}

.review-author span {
    color: #888;
    font-weight: 400;
}

.platform-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1%;
    margin-top: 20px;
    flex-wrap: wrap;
}

.platform-link {
    width: 24%;
	display: block;
    padding: 10px;
    background: #fff;
    border: 1.5px solid #e0e4ec;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
	text-align: center;
    color: #1c2230;
    transition: border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.platform-link:hover {
    border-color: #e8470a;
    color: #e8470a;
    box-shadow: 0 4px 12px rgba(232, 71, 10, 0.15);
}

.platform-link i {
    font-size: 1.1rem;
}

/* ---- ABOUT PAGE ---- */
.about-values {
    background: #f5f6f8;
}

.values-grid {
    margin-top: 40px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(28, 34, 48, 0.07);
    transition: transform 0.3s;
}

.value-card.img-card{
	padding: 0;
}

.value-card:hover {
    transform: translateY(-5px);
}
.value-card.img-card img{
	width: 100%;
	border-radius: 12px 12px 0 0;
}
.value-details {
    padding: 32px 20px;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 71, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: #e8470a;
    transition: background 0.3s;
}

.value-card:hover .value-icon {
    background: #e8470a;
    color: #fff;
}

.value-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
}

/* ---- SERVICES PAGE SPECIFIC ---- */
.service-detail-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(28, 34, 48, 0.14);
}

.service-detail-img img {
    width: 100%;
    object-fit: cover;
}

.service-detail-content p {
    margin-bottom: 16px;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(232, 71, 10, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8470a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    color: #1c2230;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.93rem;
    margin: 0;
}

.contact-info-item a {
    color: #1a7fc1;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: #e8470a;
}

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.contact-social-link {
    width: 36px;
    height: 36px;
    background: #f5f6f8;
    color: #1c2230;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.25s, color 0.25s;
}

.contact-trusted-badge {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    background: #1c2230;
	margin-top: 20px;
	padding: 20px;
}

.contact-trusted-badge img {
    width: 90px;
}

.contact-form-wrap {
    background: #f5f6f8;
    border-radius: 14px;
    padding: 40px 36px;
}

.contact-form-wrap h3 {
    margin-bottom: 24px;
}

.contact-form-wrap br {
    display: none;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1c2230;
    margin-bottom: 7px;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group .wpcf7-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dde2ec;
    border-radius: 7px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.93rem;
    color: #1c2230;
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e8470a;
    outline: none;
    box-shadow: none;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

div.form-group br {
	display: none;
}

button br {
	display: none;
}

.form-group .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-submit {
    display: block;
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 8px;
    background: #e8470a;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 13px 28px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    margin-top: 6px;
}

.wpcf7-submit:hover {
    background: #c93d08;
    transform: translateY(-1px);
}

.wpcf7-not-valid-tip {
    color: #e8470a;
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
}

.wpcf7-not-valid input,
.wpcf7-not-valid select,
.wpcf7-not-valid textarea {
    border-color: #e8470a;
}

.wpcf7-not-valid textarea {
    height: 150px;
}

.wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 7px;
    font-size: 0.88rem;
    font-weight: 600;
    border: none !important;
}

.wpcf7-mail-sent-ok {
    background: #eafaf1;
    color: #1a7a4a;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
    background: #fdecea;
    color: #c0392b;
}

/* FOOTER */
.footer {
    background: #111827;
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 0;
}

.footer .footer-heading {
    margin-bottom: 20px;
}

.footer .footer-heading span {
    color: #e8470a;
}

.footer-grid {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #fff;
}

.footer h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #e8470a;
}

.footer-links a i {
    font-size: 0.7rem;
    color: #e8470a;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 6px 0;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #e8470a;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #e0e4ec;
    font-size: 0.9rem;
    transition: all 0.3s ease-in-out;
}

.footer-contact a:hover {
    color: #e8470a;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-badge {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 700;
}

.footer-badge img {
    width: 90px;
    height: auto;
}

.footer-bottom {
    padding: 18px 0;
}

.footer-bottom p {
	border-top: 1px solid #303642;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.38);
    padding-top: 20px;
    margin-bottom: 5px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    transition: background 0.25s, color 0.25s;
}

.footer-social-link:hover {
    background: #e8470a;
    color: #fff;
}

footer .platform-link {
    background: rgb(255 255 255 / 10%);
    border: 1.5px solid #515356;
    color: #fff;
}

/* ---- RESPONSIVE ---- */
/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 30px 24px;
    }

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

    .footer-grid>*:first-child {
        grid-column: 1 / -1;
    }

}

@media (max-width: 767.9px) {
    .hero {
        padding: 60px 0 48px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
	.sm-stats {
		margin-bottom: 20px;
	}
	.sm-stats .stat-card {
		padding: 0;
		border: none;
	}
	.sm-stats .stat-number {
		font-size: 1.4rem;
	}
	.sm-stats .stat-label {
		color: #1c2230;
	}
	.sm-stats{}
	.sm-stats{}
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }
	.contact-trusted-badge img {
    width: 80px;
}
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .trust-bar-inner {
        justify-content: flex-start;
        padding: 0 1.5rem;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 430px) {
    .cta-strip-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        display: block;
    }
}

@media (max-width: 400px) {
	.split-col {
		flex: 1 1 0; 
	}
    .contact-form-wrap {
        padding: 30px 11px;
    }
	.contact-trusted-badge {
		padding: 14px;
		gap: 14px;
	}
	.contact-trusted-badge img{
		width: 80px;
	}
}

@media (max-width: 767px) {
    .service-extra {
        display: none;
    }
    .service-extra.visible {
        display: list-item;
    }
}

@media (min-width: 768px) {
    #serviceToggle {
        display: none;
    }
}

.show-more-btn {
    margin-top: 12px;
    background: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 998px) {
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		padding-right: var(--bs-gutter-x, .75rem);
		padding-left: var(--bs-gutter-x, .75rem);
	}
	
	.top-bar {
	  padding: 8px 0;
	}

	.hero h1, 
	.page-hero h1 {
		font-size: 300%;
	}
	
	section.bg-1 {
		text-align: center;
		padding: 30px 0;
	}
	
	section.bg-1 h2 {
        margin-bottom: 20px !important;
	}
	
	section.bg-1 img {
		height: 70px;
		padding: 7px;
	}
	
	section.bg-1 img:last-child {
		margin-right: 0;
	}
	
	ul.tick {
		list-style: none;
		margin-left: 0px;
		column-count: 1;
	}
	
	.platform-links {
		gap: 4%;
	}
	
	.platform-link {
		width: 48%;
		display: block;
		margin-bottom: 4%;
	}
}