.service-section {
    padding: 80px 0;
    background-image: url('https://www.verticehomeinspection.ca/public/VTHMISCTION/themeaB9xY12z/assets/images/backgrounds/banner-bg.jpg')
}
/* =========================================
   LEFT SIDE: Vertical Tabs
   ========================================= */
.custom-tabs .nav-link {
    background-color: #ffffff;
    color: var(--color-2);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    text-align: left;
    border: none;
}

/* Gold Icon Circle inside the tab */
.tab-icon {
    background-color: var(--color-1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Active Tab State */
.custom-tabs .nav-link.active {
    background-color: var(--color-2);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(9, 30, 62, 0.2);
}

.custom-tabs .nav-link:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* =========================================
   RIGHT SIDE: Tab Content Card
   ========================================= */
.content-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}

/* --- PARALLAX IMAGE EFFECT --- */
.parallax-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    
    /* The Parallax Magic */
    /*background-attachment: fixed;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.check-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
}

.check-list li i {
    color: #000;
    margin-top: 4px;
    margin-right: 10px;
}

.btn-gold {
    background-color: var(--color-1);
    color: #fff;
    padding: 16px 28.5px;
    border-radius: 50px; /* Pill shaped button */
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: 0.3s;
    line-height: 1.714em;
}
.btn-gold i {
  /* Smooth transition specifically for the rotation */
  transition: transform 0.3s ease; 
}
.btn-gold:hover { background-color: var(--color-2);color: #ffffff }
.btn-gold:hover i {
  /* Rotates the up-right arrow 45 degrees clockwise so it points right */
  transform: rotate(45deg); 
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .parallax-image {
        min-height: 250px;
        margin-bottom: 25px;
        /* Disable parallax on mobile to prevent zooming bugs on iOS */
        background-attachment: scroll; 
    }
    .content-card {
        margin-top: 20px;
        padding: 20px;
    }
}