/* Maintenance Services Stylesheet */
.why-compass {
    background-color: var(--primary-bg-color);
    color: var(--primary-p-color);
    padding: 80px 0;
}

.why-compass .section-header {
    margin-bottom: 3rem;
}

.why-compass .section-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.why-compass .section-title {
    color: var(--white-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.why-compass .section-header p {
    color: var(--primary-p-color);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/*----------------------------------------------
2. Image Placeholders
----------------------------------------------*/

.shop-image-placeholder {
    background-color: var(--primary-bg-color-2);
    border-radius: 8px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.shop-image-placeholder:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(227, 6, 54, 0.2);
}

.placeholder-content {
    text-align: center;
    color: var(--primary-p-color);
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.placeholder-content p {
    font-size: 1.1rem;
    margin: 0;
}

/*----------------------------------------------
3. Stats Cards
----------------------------------------------*/

.stat-card {
    background-color: var(--primary-bg-color-2);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(227, 6, 54, 0.2);
}

.stat-card h4 {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.stat-card p {
    color: var(--primary-p-color);
    font-size: 1rem;
    margin: 0;
}

/*----------------------------------------------
4. Counter Styling
----------------------------------------------*/

.counter {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.counter .radial {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.counter .radial canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.counter .radial span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
}

/* Hero Section */
.shop-hero {
    position: relative;
    min-height: 50vh;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: url('../images/contact-hero.avif') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    background-color: var(--hero-bg-color);
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

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

.shop-hero h1 {
    color: var(--white-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.shop-hero p {
    color: var(--white-color);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .shop-hero h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .shop-hero {
        min-height: 40vh;
    }
    
    .shop-hero h1 {
        font-size: 2rem;
    }
    
    .shop-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .shop-hero h1 {
        font-size: 1.75rem;
    }
}

/* Radial Progress Styling */
.radial {
    position: relative;
    display: inline-block;
}

.radial canvas {
    position: relative;
    z-index: 1;
}

.radial span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Update only the progress circle styles */
.progress-circle {
    width: 150px;
    height: 150px;
    transform: rotate(-90deg);
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-circle-bar {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s ease-in-out;
}

.progress-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
}

.shop-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
