/* CSS Variables */
:root {
    --primary-color: #B70000;
    --primary-dark: #8B0000;
    --primary-light: #CC0000;
    --text-color: #000;
    --light-gray: #f8f9fa;
    --border-radius: 10px;
    --font-family: 'Outfit', sans-serif;

    /* Typography */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height: 1.6;
    --font-size-base: 1rem;
}

* {
    font-family: var(--font-family);
}

body {
    color: var(--text-color);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height);
}

.text-primary {
    color: var(--primary-color) !important;
}

p {
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    margin-bottom: 1rem;
}

a{
    color: inherit;
    text-decoration: none;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
}


.bg-light {
    background-color: #f4f4f4 !important;
}
.bg-none{
    background: unset !important;
    background-color: unset !important;
}

/* Common Button Base */
.btn {
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    text-transform: uppercase;
    justify-content: center;
    padding: 13px 20px;
    border: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(183, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(183, 0, 0, 0.4);
    color: white;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
    text-decoration: none;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.btn-outline-primary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.btn-outline-primary:active {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.py-8 {
    padding: 80px 0;
}




header .header-logo {
    width: 60px;
}


/* .topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.top-social a {
  color: #000;
  font-size: 16px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.top-social a:hover {
  color: var(--primary-color);
}

.top-phone {
  font-weight: 600;
}

.top-phone i {
  color: var(--primary-color);
}

.top-phone a {
  color: #000;
  text-decoration: none;
}

.top-phone a:hover {
  color: var(--primary-dark);
} */




/* Navbar look */
.main-nav {
    background: transparent;
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Homepage - red border on container width */
.main-nav > .container {
    border-bottom: 2px solid var(--primary-color);
}

/* Inner pages - white navbar by default */
#inner .main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#inner .main-nav > .container {
    border-bottom: none;
    padding-bottom: 0;
}

/* Scrolled state - white navbar */
.main-nav.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav.scrolled > .container {
    border-bottom: none;
    padding-bottom: 0;
}

/* Remove shadow from header when transparent */
header.fixed-top {
    box-shadow: none;
}
header.fixed-top.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#inner header.fixed-top {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 600;
    color: #000 !important;
    text-transform: uppercase;
    margin: 0 10px;
}

/* Header Call Button */
header .header-call-btn {
    background: linear-gradient(90deg, #E7000B 0%, #B70000 100%);
    padding: 10px 20px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
}
header .header-call-btn .call-label {
    font-size: 12px;
    font-weight: 400;
}
header .header-call-btn .call-number {
    font-size: 14px;
    font-weight: 700;
}
header .header-call-btn:hover {
    background: linear-gradient(90deg, #B70000 0%, #8B0000 100%);
}

/* ===== Mega Menu ===== */
header .navbar .mega-dropdown {
    position: static !important;
}

header .main-nav .container {
    position: relative;
}

header .mega-dropdown > .mega-menu {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 75% !important;
    background: #fff !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
    display: none !important;
    z-index: 1000 !important;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

header .mega-dropdown:hover > .mega-menu {
    display: block !important;
}

/* Mega Menu Header Row */
header .mega-menu .mega-menu-header {
    display: flex !important;
    flex-wrap: nowrap !important;
    background-color: var(--primary-color) !important;
    padding: 0 !important;
    margin: 0 !important;
}

header .mega-menu .mega-menu-header-col {
    flex: 1 1 25%;
    padding: 14px 24px;
    color: #fff;
    font-weight: var(--font-weight-bold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

header .mega-menu .mega-menu-header-col:last-child {
    border-right: none;
}

/* Mega Menu Body */
header .mega-menu .mega-menu-body {
    display: flex !important;
    flex-wrap: nowrap !important;
    padding: 0 !important;
    margin: 0 !important;
}

header .mega-menu .mega-menu-col {
    flex: 1 1 25%;
    padding: 20px 24px;
    border-right: 1px solid #e8e8e8;
}

header .mega-menu .mega-menu-col:last-child {
    border-right: none;
}

/* Mega Menu Groups */
header .mega-menu .mega-menu-group {
    margin-bottom: 18px;
}

header .mega-menu .mega-menu-group:last-child {
    margin-bottom: 0;
}

header .mega-menu .mega-menu-category {
    color: #000;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

header .mega-menu .mega-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--primary-color);
    flex-shrink: 0;
}

header .mega-menu .mega-menu-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .mega-menu .mega-menu-group ul li {
    margin-bottom: 2px;
}

header .mega-menu .mega-menu-group ul li a {
    display: block;
    padding: 3px 0 3px 18px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: var(--font-weight-normal);
    text-transform: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

header .mega-menu .mega-menu-group ul li a:hover {
    color: var(--primary-color);
    padding-left: 22px;
}



/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 112px;
    padding: 70px 0;
}

.hero-section .btn-secondary{
    font-weight: 700;
}

.hero-section .hero-subtitle{
    max-width: 60%;
    margin: 0 auto;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

/* Google Badge */
.google-badge {
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    margin-top: 15px;
    animation: spin 2s linear infinite;
    -webkit-transform: infinite-rotate;
    -moz-transform: infinite-rotate;
    -ms-transform: infinite-rotate;
    -o-transform: infinite-rotate;
    -webkit-animation: spin 2s linear infinite;
}

/* Premium Badge */
.premium-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    margin-bottom: 15px;
}



/* Feature Icon Image */
.feature-icon-img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon-img-src {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-img-src {
    transform: scale(1.1) rotate(5deg);
    filter: hue-rotate(-30deg) saturate(1.5) brightness(1.1);
    -webkit-transform: scale(1.1) rotate(5deg);
    -moz-transform: scale(1.1) rotate(5deg);
    -ms-transform: scale(1.1) rotate(5deg);
    -o-transform: scale(1.1) rotate(5deg);
    -webkit-filter: hue-rotate(-30deg) saturate(1.5) brightness(1.1);
}

/* Service Icon Image */
.service-icon-img {
    margin-bottom: 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.service-card img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.15) rotate(-5deg);
    -webkit-transform: scale(1.15) rotate(-5deg);
    -moz-transform: scale(1.15) rotate(-5deg);
    -ms-transform: scale(1.15) rotate(-5deg);
    -o-transform: scale(1.15) rotate(-5deg);
}

/* Feature Card */
.feature-card {
    padding: 30px 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: #000;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    font-size: var(--font-size-base);
    color: #000;
    line-height: var(--line-height);
    margin: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


/* Service Card with Icon */
.service-card {
    padding: 30px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(183, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card h4 {
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 12px;
}

.service-card p {
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    margin-bottom: 0;
}

ul.jack-list {
    list-style-type: disc;
    padding-left: 20px;
}
ul.jack-list.half-width li{
    width: 50%;
}

ul.jack-list li {
    list-style-type: none;
    position: relative;
    padding-left: 35px;
}

ul.jack-list li::before {
    content: url('../images/check-list-icon.svg');
    position: absolute;
    left: 0px
}

.cta-bg {
    background: url('../images/contact-us-bg.webp');
    background-size: cover;
}

/* FAQ Accordion Section - removed, see .faq-section styles below */

/* ===== Contact Page Cards ===== */
.contact-cards-section {
    background-color: #fff;
    padding: 40px 0;
}

.contact-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.contact-card-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.contact-card-title {
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-color);
}

.contact-card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.contact-card-btn {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    padding: 10px 28px;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: auto;
}

.contact-card-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    padding-bottom: 40px;
}

.contact-form-section .contact-form .form-control,
.contact-form-section .wpcf7-form-control:not(.wpcf7-submit) {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 14px 16px;
    background: #f8f8f8;
    font-size: 0.95rem;
    color: #333;
    width: 100%;
}

.contact-form-section .contact-form .form-control:focus,
.contact-form-section .wpcf7-form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background: #fff;
}

.contact-form-section .contact-form .form-control::placeholder {
    color: #999;
}

.contact-form-section .contact-form .form-select {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 14px 16px;
    background-color: #f8f8f8;
    font-size: 0.95rem;
    color: #999;
    appearance: auto;
}

.contact-form-section .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background: #fff;
}

/* Contact Map */
.contact-map-wrapper {
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* Contact Section */
.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}


.contact-form .form-control {
    background-color: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: var(--font-size-base);
}

.contact-form .form-control:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-form .form-label {
    color: var(--text-color);
    font-size: var(--font-size-base);
}

/* Social Icons */
.social-icon {
    width: 42px;
    height: 42px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(183, 0, 0, 0.3);
}

/* Book CTA Section */
.book-cta-card {
    background-image: url('../images/cta.webp');
    background-size: cover;
    background-position: center left;
    border-radius: 16px;
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.book-cta-content {
    position: relative;
    z-index: 2;
    width: 55%;
    padding: 40px;
}

.book-cta-card .btn-outline-light {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.book-cta-card .btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

.book-cta-card .btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

.book-cta-card .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
}

.footer .jack-footer-logo {
    width: 120px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-links span {
    color: #ccc;
}

.footer-links i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Footer Social Icons */
.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(183, 0, 0, 0.4);
}

.footer h5 {
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

footer .rf-logo {
    width: 150px;
}


/* ========================================
   HOMEPAGE STYLES
======================================== */

/* Hero Section */
.hero-home {
    background: url('../images/home/hero-bg.png') no-repeat left center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: 113px;
}

.hero-home .hero-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-home .hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-video {
    width: 536px;
    height: 673px;
    object-fit: cover;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

/* Financeit Button */
.financeit-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px 25px;
}
.financeit-btn img {
    height: 24px;
    width: auto;
}
.financeit-btn:hover {
    border-color: #333;
}

/* Trust Badges */
.trust-badges img {
    max-width: 350px;
    height: auto;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

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

/* Google Rating Badge */
.google-rating-badge {
    position: absolute;
    bottom: 80px;
    left: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.google-rating-badge img {
    max-width: 200px;
    height: auto;
}


/* Stats Section */
.stats-section {
    background-color: #F3F3F3;
}

.stat-item {
    padding: 20px 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Why Choose Us Section */
.section-badge {
    color: var(--primary-color);
    border-radius: 50px;
    border: 1px solid rgba(34, 34, 34, 0.15);
    padding: 3px 15px;
    margin-bottom: 10px;
    width: fit-content;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    background: url('../images/home/services-bg.png') no-repeat center center;
    background-size: cover;
}

.services-section .section-badge.border-white {
    border-color: rgba(255, 255, 255, 0.3);
}

.services-section .service-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.services-section .service-card:hover {
    background: var(--primary-color);
}

.services-section .service-card:hover h3,
.services-section .service-card:hover p {
    color: #fff;
}

.services-section .service-card .btn-outline-primary {
    font-weight: var(--font-weight-bold);
}
.services-section .service-card:hover .btn-outline-primary {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.services-section .service-card:hover .btn-outline-primary:hover {
    background: #fff;
    color: var(--primary-color);
}

.service-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-icon .icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-section .service-card:hover .service-icon img:not(.icon-hover):not(.service-svg-icon) {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.services-section .service-card:hover .service-icon .icon-hover {
    opacity: 1;
}


/* SVG Icon Hover Effect */
.service-svg-icon {
    transition: filter 0.3s ease;
}

.services-section .service-card:hover .service-svg-icon {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.service-icon h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0;
}

.service-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

.services-section .service-card .btn {
    flex-shrink: 0;
    white-space: nowrap;
}


/* ========================================
   CALGARY GO-TO SECTION
======================================== */

.calgary-goto-section .goto-content {
    padding-right: 40px;
}

.calgary-goto-section .goto-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.calgary-goto-section .goto-description {
    margin-bottom: 1.5rem;
}

.calgary-goto-section .goto-description p {
    font-size: 1.125rem;
    color: #364153;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.calgary-goto-section .goto-image img {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* Go-To Features Grid */
.calgary-goto-section .goto-features-grid {
    margin-top: 50px;
}

.calgary-goto-section .goto-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.calgary-goto-section .goto-feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.calgary-goto-section .goto-feature-icon svg {
    width: 30px;
    height: 30px;
}

.calgary-goto-section .goto-feature-text h4 {
    font-size: 1.25rem;
}

.calgary-goto-section .goto-feature-text p {
    font-size: 1.1rem;
    color: #364153;
    margin-bottom: 0;
    line-height: 1.6;
}


/* ========================================
   WORKING PROCESS SECTION
======================================== */
.working-process-section .process-steps {
    position: relative;
}

.working-process-section .process-card {
    position: relative;
    padding: 0px 10px;
    transition: all 0.3s ease;
}

.working-process-section .process-icon {
    position: relative;
}


.working-process-section .process-icon .icon-white {
    display: none;
}

.working-process-section .process-card:hover .icon-default {
    display: none;
}

.working-process-section .process-card:hover .icon-white {
    display: block;
    margin: 0 auto;
}

.working-process-section .step-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 2px solid #E1E1E1;
    border-radius: 50px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.working-process-section .process-card:hover .step-badge {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.working-process-section .process-card:hover .text-muted {
    color: var(--text-color) !important;
    transition: 0.3s ease-in-out;
}

.working-process-section .process-steps .row > [class*="col-"] {
    position: relative;
}

.working-process-section .process-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    z-index: 10;
}


/* ========================================
   FINANCEIT SECTION
======================================== */

.financeit-section h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.financeit-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.financeit-section .financeit-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}


/* ========================================
   PROJECTS SECTION
======================================== */
.projects-section {
    background-color: #fff;
}

.projects-section .section-badge {
    display: flex;
    justify-content: center;
}

.projects-section .projects-grid {
    position: relative;
}

.projects-section .home-project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}


.projects-section .home-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects-section .home-project-card:hover .home-project-image {
    transform: scale(1.05);
}


.projects-section .home-project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    z-index: 2;
}

.projects-section .home-project-info h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 5px;
    color: white;
}

.projects-section .home-project-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.projects-section .home-project-location i {
    margin-right: 5px;
}

.projects-section .home-project-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.projects-section .home-project-arrow:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Projects CTA Box */
.projects-section .projects-cta {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.projects-section .projects-cta h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
}

.projects-section .projects-cta p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}



.testimonials-section {
    background: rgba(217, 39, 45, 0.20);
}
.testimonials-section .testimonials-header img{
    margin-top: -65px;
    max-width: 175px;
    animation: spin 30s linear infinite;
    -webkit-animation: spin 30s linear infinite;
}

/* ========================================
   BLOGS SECTION
======================================== */
.blogs-section {
    background-color: #fff;
}
.blogs-section .content-area a{
    color: var(--primary-color);
}
.blogs-section .content-area h2, .blogs-section .content-area h3, .blogs-section .content-area h4{
	margin-top: 20px;
}

.blog-content img.img-responsive, .blog-content img {
    border-radius: 16px;
    max-width: 100%;
    margin: 20px auto;
    display: flex;
}

.blogs-section .blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.blogs-section .blogs-header-content .section-badge {
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.blogs-section .blogs-header-content .section-title {
    margin-bottom: 0;
}

.blogs-section .blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blogs-section .blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.blogs-section .blog-image {
    position: relative;
    height: 340px;
    overflow: hidden;
    border-radius: 16px;
}

.blogs-section .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blogs-section .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blogs-section .read-more-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.blogs-section .blog-card:hover .read-more-btn {
    opacity: 1;
}

.blogs-section .read-more-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.blogs-section .read-more-btn i {
    margin-left: 8px;
}

.blogs-section .blog-meta {
    display: flex;
    gap: 20px;
    color: #666;
}

.blogs-section .blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blogs-section .blog-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    height: 50px;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blogs-section .blog-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blogs-section .blog-title a:hover {
    color: var(--primary-color);
}


/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    background-color: var(--light-gray);
}

.contact-section .contact-info-wrapper {
    background: linear-gradient(rgba(183, 0, 0, 0.8), rgba(183, 0, 0, 0.8)), url('../images/home/calgary-goto.webp') no-repeat center center;
    background-size: cover;
    padding: 20px 30px;
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

.contact-section .contact-info-content {
    color: white;
}

.contact-section .contact-info-content .section-badge {
    border-color: rgba(255,255,255,0.3);
}

.contact-section .contact-info-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
}

.contact-section .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-section .contact-item .contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-section .contact-item .contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-section .contact-text .label {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    opacity: 0.9;
}

.contact-section .contact-text a,
.contact-section .contact-text span {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    color: white;
    text-decoration: none;
}

.contact-section .contact-text a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-section .contact-form-wrapper {
    padding: 40px 40px;
    background-color: #EEEDED;
}

.contact-section .contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-section .contact-form-wrapper .form-control {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-section .contact-form .form-group {
    margin-bottom: 20px;
}

.contact-section .contact-form .form-control,
.contact-section .contact-form .wpcf7-form-control {
    /* border: 1px solid #e8e8e8; */
    border-radius: 8px;
    padding: 14px 16px;
    /* background-color: #f8f8f8; */
    font-size: 1rem;
    width: 100%;
}

.contact-section .contact-form .form-control:focus,
.contact-section .contact-form .wpcf7-form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: #fff;
}

.contact-section .contact-form select.form-control {
    appearance: auto;
}

.contact-section .contact-form textarea.form-control {
    min-height: 100px;
    resize: none;
}



.title-area{
    background: url('../images/about/banner.webp') no-repeat center center;
    background-size: cover;
    margin-top: 113px;
    padding: 70px 0;
}

.title-area .hero-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

.about-cta .content{
    background: url('../images/about/cta-bg.webp') no-repeat center center;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 50px 0 60px;
    background-color: #fff;
}

.faq-section .faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 10px !important;
    background-color: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-section .faq-button {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
    background-color: #fff;
    box-shadow: none !important;
    padding: 18px 20px;
    border: none;
}

.faq-section .faq-button:not(.collapsed) {
    color: var(--text-color);
    background-color: #fff;
}

.faq-section .faq-button::after {
    width: 0.85rem;
    height: 0.85rem;
    background-size: 0.85rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .faq-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B70000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .faq-body {
    border-top: 1px solid #E5E7EB;
    color: #666;
    font-size: 0.95rem;
    padding: 16px 20px;
    line-height: 1.6;
}

.final-cta .content{
    background: url('../images/about/final-cta.webp') no-repeat center center;
}



/* Services page */
.services-section.services{

}


/* ========================================
   CAREER PAGE
======================================== */
.title-area.career-title-area {
    background: url('../images/career/banner.jpg') no-repeat center center;
}

.career-page .career-content h2 {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 16px;
}

.career-page .career-content p {
    color: #444;
    margin-bottom: 0;
}

.career-page .career-image-card {
    border-radius: 14px;
    overflow: hidden;
}

.career-page .career-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.career-page .career-stats {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.career-page .career-stat-card {
    flex: 0 0 190px;
    border: 1px solid #dedede;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 16px 12px;
}

.career-page .career-stat-card h3 {
    margin-bottom: 4px;
    font-size: 2rem;
    color: var(--primary-color);
}

.career-page .career-stat-card p {
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: #111;
    margin-bottom: 0;
}

.career-page .career-feature-list,
.career-page .career-requirements-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.career-page .career-feature-list li,
.career-page .career-requirements-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
}

.career-page .career-feature-list li::before,
.career-page .career-requirements-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
    line-height: 1.7;
}

.career-page .career-feature-list h3,
.career-page .career-requirements-list strong {
    font-size: 1.5rem;
    margin-bottom: 2px;
    display: block;
    color: #171717;
}

.career-page .career-feature-list p,
.career-page .career-requirements-list span {
    color: #4f4f4f;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
}

.career-page .career-form-card {
    border: 1.5px solid var(--primary-color);
    border-radius: 16px;
    padding: 36px 28px;
    background-color: #fff;
}

.career-page .career-form-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.career-page .career-form-card h2 span {
    font-size: 1.8rem;
}

.career-page .career-form-card p {
    max-width: 760px;
    margin: 0 auto 24px;
}

.career-page .career-form-wrap {
    text-align: left;
}

.career-page .career-form-wrap .contact-form .form-group {
    margin-bottom: 14px;
}

.career-page .career-form-wrap .contact-form textarea.form-control {
    min-height: 120px;
}

.career-page .career-form-wrap .contact-form .form-group:last-child {
    text-align: center;
    margin-bottom: 20px;
}

.career-page .career-form-wrap input:not([type="submit"]),
.career-page .career-form-wrap input[type="email"],
.career-page .career-form-wrap input[type="tel"],
.career-page .career-form-wrap input[type="text"],
.career-page .career-form-wrap input[type="file"],
.career-page .career-form-wrap select,
.career-page .career-form-wrap textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.95rem;
    background-color: #f8f8f8;
}

.career-page .career-form-wrap input:focus,
.career-page .career-form-wrap select:focus,
.career-page .career-form-wrap textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
    background-color: #fff;
}

.career-page .career-form-wrap input[type="submit"],
.career-page .career-form-wrap button,
.career-page .career-form-wrap .wpcf7-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: var(--font-weight-semibold);
    min-width: 180px;
}

.career-page .career-form-wrap .contact-form .btn.btn-primary {
    min-width: 220px;
}

.career-page .career-form-wrap input[type="submit"]:hover,
.career-page .career-form-wrap .wpcf7-submit:hover {
    background-color: var(--primary-dark);
}