/* ============ EXISTING HERO SECTION ============ */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.3)
    );
    z-index: 2;
}

.hero-section .row {
    padding-left: 30px;
    padding-right: 30px;
}

.hero-left, .hero-right {
    position: relative;
    z-index: 5;
}

.hero-label {
    font-size: 14px;
    letter-spacing: 3px;
    color: #f7c600;
}

.hero-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 600px;
}

.hero-para {
    font-size: 18px;
    line-height: 1.7;
    color: #ddd;
    margin-top: 20px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.client-count {
    background: #f7c600;
    padding: 12px 18px;
    border-radius: 50%;
    color: #000;
    font-weight: 700;
}

.client-text {
    font-size: 14px;
    color: #ddd;
}

.hero-buttons .btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }
}

/* ============ STATS STRIP ============ */
.stats-strip {
    background: #0d0d0d;
    padding: 20px 0;
}

.stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.stat-item {
    flex: 1;
}

.stat-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-number {
    font-size: 30px !important;
    font-weight: 700;
    color: #f7c600;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
}

.stat-text {
    font-size: 14px !important;
    font-weight: 300;
    color: #d1d1d1;
    letter-spacing: 8px;
    line-height: 1.4;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .stats-wrapper {
        flex-wrap: wrap;
    }
    .stat-item {
        width: 50%;
        margin-bottom: 40px;
    }
    .stat-flex {
        justify-content: center;
        text-align: left;
    }
}

/* ============ NEW PROTECT EDMONTON SECTION ============ */
.protect-edmonton-section {
    background: #0d0d0d;
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-label {
    color: #f7c600;
    font-size: 16px;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: #ccc;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* ============ WHY CHOOSE US SECTION ============ */
.why-choose-section {
    background: #0a0a0a;
    padding: 60px 0;
}

.why-box {
    background: #111;
    padding: 35px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 204, 0, 0.2);
    transition: 0.3s ease;
    text-align: center;
    height: 100%;
}

.why-box:hover {
    border-color: #f7c600;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
}

.why-icon {
    font-size: 50px;
    color: #f7c600;
    margin-bottom: 20px;
}

.why-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.why-box p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* ============ PROFESSIONAL SECURITY SECTION ============ */
.pro-security-section {
    background: #0a0a0a;
    padding: 60px 0;
}

.pro-sec-label {
    color: #f7c600;
    letter-spacing: 4px;
    font-size: 14px;
}

.pro-sec-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0 50px;
}

.pro-sec-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 2px solid #1b1b1b;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.pro-tab {
    background: none;
    border: none;
    color: #bbb;
    font-size: 20px;
    font-weight: 600;
    padding: 10px 5px;
    cursor: pointer;
    position: relative;
}

.pro-tab.active {
    color: #f7c600;
}

.pro-tab.active::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #f7c600;
    position: absolute;
    bottom: -14px;
    left: 0;
    border-radius: 5px;
}

.pro-sec-content {
    display: none;
    text-align: center;
    animation: fadeIn .6s ease;
}

.pro-sec-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pro-img-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.pro-img-box img {
    /* width: 100%; */
    height: 430px;
    object-fit: cover;
    transition: .4s ease;
}

.pro-img-box img:hover {
    transform: scale(1.05);
}

.pro-sec-content-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.pro-sec-desc {
    color: #ccc;
    font-size: 18px;
    width: 80%;
    margin: 15px auto 30px;
    line-height: 1.7;
}

.pro-sec-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pro-sec-features div {
    color: #fff;
    font-size: 18px;
}

.pro-sec-features i {
    color: #f7c600;
    margin-right: 10px;
    font-size: 22px;
}

/* ============ SERVICES SECTION ============ */
.services-section {
    background: #0d0d0d;
    padding: 60px 0;
}

.services-header {
    margin-bottom: 70px;
}

.services-label {
    color: #f7c600;
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.services-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.service-box {
    background: #111;
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: 0.3s ease;
    height: 100%;
}

.service-box:hover {
    border-color: #f7c600;
}

.service-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-text {
    color: #bbbbbb;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.service-link {
    color: #f7c600;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
}

/* ============ AREAS WE SERVE SECTION ============ */
.areas-serve-section {
    background: #0a0a0a;
    padding: 60px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-item {
    background: #111;
    padding: 30px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 204, 0, 0.2);
    text-align: center;
    transition: 0.3s ease;
}

.area-item:hover {
    border-color: #f7c600;
    transform: translateY(-5px);
}

.area-item i {
    font-size: 40px;
    color: #f7c600;
    margin-bottom: 15px;
}

.area-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ============ PROCESS SECTION ============ */
.process-section {
    background: #0d0d0d;
    padding: 60px 0;
}

.process-box {
    background: #111;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 204, 0, 0.2);
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
}

.process-box:hover {
    border-color: #f7c600;
    transform: translateY(-5px);
}

.process-number {
    font-size: 60px;
    font-weight: 800;
    color: #f7c600;
    line-height: 1;
    margin-bottom: 20px;
}

.process-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.process-box p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* ============ VALUES/WHY US SECTION ============ */
.whyus-section {
    background: #0d0d0d;
    padding: 60px 0 40px;
}

.whyus-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.whyus-label {
    color: #f7c600;
    font-size: 16px;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.whyus-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.whyus-text {
    color: #cccccc;
    font-size: 20px;
    line-height: 1.7;
    max-width: 530px;
}

.whyus-features {
    margin-top: 70px;
}

.whyus-box {
    background: #111;
    padding: 35px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 204, 0, 0.3);
    transition: .3s ease;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
}

.whyus-box:hover {
    border-color: #f7c600;
    box-shadow: 0 0 28px rgba(255, 204, 0, 0.35);
}

.whyus-box-title {
    color: #f7c600;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.check-icon {
    font-size: 20px;
    margin-right: 8px;
    color: #f7c600;
}

/* ============ BLOG SLIDER ============ */
.home-blog-slider {
    background: #0d0d0d;
    padding: 60px 0;
}

.blog-label {
    color: #f7c600;
    font-size: 16px;
    letter-spacing: 4px;
}

.blog-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 15px;
}

.blog-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-image-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
}

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

.blog-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-title a {
    color: #fff;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 700;
}

.blog-post-title a:hover {
    color: #f7c600;
}

.blog-meta {
    color: #f7c600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: #ccc;
    line-height: 1.7;
    flex: 1;
}

.swiper-pagination-bullet {
    background: #555 !important;
}

.swiper-pagination-bullet-active {
    background: #f7c600 !important;
}

/* ============ FAQ SECTION ============ */
.faq-section {
    background: #0d0d0d;
    padding: 60px 0;
}

.faq-label {
    color: #f7c600;
    font-size: 16px;
    letter-spacing: 4px;
}

.faq-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 60px;
}

.faq-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    color: #fff;
    font-size: 20px;
    padding: 12px 0;
    cursor: pointer;
    border-bottom: 1px solid #444;
    position: relative;
}

.faq-item.active .faq-question {
    border-bottom: 2px solid #f7c600;
}

.faq-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #bbb;
    border-bottom: 2px solid #bbb;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: 18px;
    transition: .3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(-135deg);
    border-color: #f7c600;
}

.faq-answer {
    display: none;
    color: #ccc;
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.7;
}

/* ============ MAP & PROVEN SECTION ============ */
.proven-main-section {
    background: #0d0d0d;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.proven-image-wrap {
    margin-bottom: 25px;
}

.proven-image {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4));
}

.proven-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.proven-subtitle {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #f7c600;
}

/* ============ CONSULT CTA SECTION ============ */
.consult-v2-section {
    padding: 60px 0;
    background: #080808;
}

.consult-v2-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 70px;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    position: relative;
}

.consult-v2-wrapper::before {
    content: "\f3ed";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 170px;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
}

.consult-v2-left {
    width: 50%;
}

.consult-v2-label {
    color: #f7c600;
    font-size: 15px;
    letter-spacing: 4px;
    margin-bottom: 8px;
    display: block;
}

.consult-v2-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.consult-v2-desc {
    color: #ddd;
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 38px;
}

.consult-v2-btn {
    background: linear-gradient(135deg, #f7c600, #e0ac00);
    color: #000;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

.consult-v2-btn:hover {
    background: #cfa200;
}

.consult-v2-right {
    width: 40%;
}

.consult-v2-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.06);
    padding: 15px 15px;
    border-radius: 14px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.25s ease;
    text-decoration: none !important;
}

.consult-v2-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-4px);
}

.consult-v2-card i {
    font-size: 34px;
    color: #f7c600;
}

.consult-v2-card h4 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.consult-v2-card p {
    margin: 0;
    font-size: 16px;
    color: #ccc;
}

/* ============ RESPONSIVE STYLES ============ */
@media (max-width: 991px) {
    .hero-title { font-size: 42px; }
    .section-title { font-size: 32px; }
    .services-title { font-size: 32px; }
    .pro-sec-title { font-size: 32px; }
    .blog-title { font-size: 32px; }
    .faq-title { font-size: 32px; }
    .proven-title { font-size: 32px; }
    
    .pro-sec-tabs {
        overflow-x: auto;
        white-space: nowrap;
        gap: 25px;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .pro-tab {
        font-size: 16px;
        flex: 0 0 auto;
    }

    .consult-v2-wrapper {
        flex-direction: column;
        padding: 45px;
        gap: 35px;
    }

    .consult-v2-left, 
    .consult-v2-right {
        width: 100%;
    }

    .whyus-row {
        text-align: center;
    }

    .whyus-text {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; }
    .services-title { font-size: 28px; }
    .pro-sec-title { font-size: 28px; }
    .blog-title { font-size: 28px; }
    .faq-title { font-size: 28px; }
    .proven-title { font-size: 28px; }
    
    .service-box {
        padding: 35px 25px;
    }
    
    .pro-img-box img {
        height: 280px;
    }

    .consult-v2-wrapper {
        padding: 28px;
    }

    .consult-v2-title {
        font-size: 28px;
    }

    .hero-buttons .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }
}









    .canton-banner-link {
        display: block;
        text-decoration: none;
    }

    .canton-banner {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        border-radius: 14px;
        overflow: hidden;
    }

    .canton-banner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

   
    @media (max-width: 768px) {
        .canton-banner {
            border-radius: 10px;
        }
    }