/* Services Page Styles */
:root {
    --primary-color: #0071e3;
    --secondary-color: #f5f5f7;
    --dark-color: #1d1d1f;
    --light-color: #ffffff;
    --border-color: #d2d2d7;
    --text-color: #333;
    --light-text-color: #6e6e73;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Service Navigation Menu */
.service-nav-section {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.service-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
    color: var(--text-color);
}

.service-nav-item:hover {
    background-color: rgba(0, 113, 227, 0.05);
    transform: translateY(-3px);
}

.service-nav-item.active {
    background-color: rgba(0, 113, 227, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.nav-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-nav-item:hover .nav-icon,
.service-nav-item.active .nav-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.alt-bg {
    background-color: var(--secondary-color);
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-text-color);
    max-width: 800px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

/* Product Showcase */
.product-highlight {
    overflow: hidden;
}

.product-image-showcase {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: var(--box-shadow); */
    transition: var(--transition);
}

.product-image-showcase:hover .showcase-image {
    transform: translateY(-5px);
}

/* Service Grid */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-column {
    flex: 1;
    min-width: 300px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 113, 227, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-details p {
    color: var(--light-text-color);
    margin-bottom: 15px;
}

/* Mac Mini Feature Layout */
.product-feature-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.product-showcase {
    position: relative;
    margin-bottom: 50px;
}

.feature-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.feature-callout {
    position: absolute;
    bottom: 30px;
    right: 30px;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.callout-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.feature-callout h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-callout p {
    color: var(--light-text-color);
}

/* Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-card p {
    color: var(--light-text-color);
}

/* Common Services */
.common-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.common-service {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.common-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.common-service .service-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    font-size: 30px;
}

.common-service h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    text-align: center;
}

.common-service p {
    color: var(--light-text-color);
    margin-bottom: 20px;
    text-align: center;
}

.service-details-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-details-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--light-text-color);
}

.service-details-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/* Premium Services */
.premium-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.premium-service {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.premium-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.premium-service.featured {
    border: 2px solid var(--primary-color);
}

.premium-service .service-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.featured-label {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    border-bottom-left-radius: 10px;
}

.premium-service h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.price-period {
    font-size: 14px;
    color: var(--light-text-color);
}

.service-features {
    padding: 30px;
}

.service-description {
    margin-bottom: 20px;
    color: var(--light-text-color);
}

.service-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-cta {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #005bbf;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: rgba(0, 113, 227, 0.1);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .service-grid {
        flex-direction: column;
    }
    
    .service-column {
        width: 100%;
    }
    
    .feature-callout {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: -30px;
        margin-left: 20px;
        margin-right: 20px;
        z-index: 1;
    }
}

@media (max-width: 768px) {
    .service-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .service-nav-item {
        flex-shrink: 0;
        min-width: 100px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .common-service {
        padding: 20px;
    }
    
    .premium-service .service-header,
    .service-features {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .service-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .common-services {
        grid-template-columns: 1fr;
    }
    
    .premium-services {
        grid-template-columns: 1fr;
    }
}

/* Mobile menu toggle visibility */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}