/* Enhanced Service Detail Page Styles */

/* Improved Breadcrumb */
.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--quaternary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--tertiary-color);
    background: rgba(0, 136, 70, 0.1);
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 12px;
}

/* Enhanced Service Hero Section */
.service-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

/* Animated background elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Enhanced overlay system */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(33, 37, 41, 0.6) 0%,
        rgba(0, 136, 70, 0.5) 50%,
        rgba(33, 37, 41, 0.7) 100%
    );
    z-index: 2;
}

.hero-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
}

/* Enhanced content styling */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 35px;
    display: inline-block;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 231, 119, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.service-icon {
    width: 100px;
    height: 100px;
    padding: 22px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    transition: all 0.4s ease;
    border: 3px solid rgba(0, 231, 119, 0.2);
    position: relative;
    z-index: 2;
}

.service-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.service-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 1.3rem;
    color: var(--quaternary-color);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.service-pricing {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 2px solid rgba(0, 231, 119, 0.2);
    position: relative;
    overflow: hidden;
}

.service-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 231, 119, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-pricing:hover::before {
    left: 100%;
}

.price-current {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 0 2px 8px rgba(0, 231, 119, 0.3);
}

.price-original {
    font-size: 1.5rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.price-discount {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    color: white;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(8, 211, 113, 0.3);
    animation: pulse-discount 2s ease-in-out infinite;
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Enhanced button styles */
.btn {
    padding: 18px 36px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 180px;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00e777;
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #00e777;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 231, 119, 0.3);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(167, 219, 194, 0.4);
    color: white;
    text-decoration: none;
}

.pulse-btn {
    animation: pulse-button 2s ease-in-out infinite;
}

.pulse-btn:hover{
    background: rgba(12, 183, 103, 0.9);
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 231, 119, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(0, 231, 119, 0.5); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid rgba(0, 231, 119, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    color: var(--primary-color);
    text-decoration: none;
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 231, 119, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tertiary-color);
    border: 1px solid rgba(0, 231, 119, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(0, 231, 119, 0.15);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Enhanced Service Content Section */
.service-content {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* Enhanced Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.content-card:hover::before {
    opacity: 1;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(0, 231, 119, 0.06), rgba(0, 136, 70, 0.06));
    border-bottom: 1px solid rgba(0, 231, 119, 0.1);
}

.content-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-header h2 i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.expand-btn {
    background: rgba(0, 231, 119, 0.1);
    border: 1px solid rgba(0, 231, 119, 0.2);
    border-radius: 15px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    color: var(--secondary-color);
}

.expand-btn:hover {
    background: rgba(0, 231, 119, 0.2);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 231, 119, 0.2);
}

.expand-btn i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.content-body {
    padding: 40px;
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 25px;
}

.features-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 231, 119, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--tertiary-color));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 231, 119, 0.15);
    border-color: var(--secondary-color);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(0, 231, 119, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 231, 119, 0.4);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-description {
    color: var(--quaternary-color);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 80px 0;
    margin: 80px 0;
    background: transparent;
}

.cta-card {
    background: linear-gradient(135deg, rgba(0, 136, 70, 0.95) 0%, rgba(0, 231, 119, 0.9) 100%);
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 136, 70, 0.2);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

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

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.cta-icon:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-cta.btn-primary {
    background: white;
    color: var(--tertiary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: #f8f9fa;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-cta:hover .btn-shine {
    left: 100%;
}

.btn-cta.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-cta.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    font-size: 0.95rem;
    color: white;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    font-weight: 500;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.feature-badge i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Related Services Section */
.related-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--quaternary-color);
    margin-bottom: 70px;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.related-service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.5s ease;
    position: relative;
}

.service-card-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 231, 119, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.related-service-card:hover .service-card-inner {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 231, 119, 0.15);
    border-color: var(--secondary-color);
}

.related-service-card:hover .service-card-inner::before {
    transform: scaleX(1);
}

.related-service-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 30px;
    border-radius: 24px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(0, 231, 119, 0.1), rgba(0, 136, 70, 0.1));
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 231, 119, 0.2);
}

.related-service-card:hover .related-service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 231, 119, 0.2), rgba(0, 136, 70, 0.2));
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 231, 119, 0.2);
}

.related-service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    line-height: 1.3;
}

.related-service-slogan {
    color: var(--quaternary-color);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
}

.related-service-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ripple effect for buttons */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cta-section {
        margin: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .service-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 65vh;
        padding: 80px 0;
    }
    
    .hero-content {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .service-title {
        font-size: 2.4rem;
    }
    
    .service-description {
        font-size: 1.1rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        padding: 18px;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn,
    .btn-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .service-pricing {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 25px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .content-header {
        padding: 30px 25px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .content-body {
        padding: 30px 25px;
    }
    
    .features-grid,
    .features-grid.compact {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .cta-card {
        padding: 50px 30px;
        margin: 0 15px;
    }
    
    .cta-title {
        font-size: 1.9rem;
    }
    
    .cta-description {
        font-size: 1.05rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        padding: 15px;
    }
    
    .price-current {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .cta-card {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .content-header h2 {
        font-size: 1.4rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .related-service-icon {
        width: 70px;
        height: 70px;
        padding: 15px;
    }
    
    .related-service-name {
        font-size: 1.3rem;
    }
}

/* Performance optimizations */
.service-hero,
.cta-section,
.feature-card,
.related-service-card {
    will-change: transform;
}

/* Accessibility improvements */
.expand-btn:focus,
.btn:focus,
.btn-cta:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Smooth transitions for expand/collapse */
.expandable-content {
    transition: all 0.4s ease;
}

.content-preview,
.content-full {
    transition: opacity 0.4s ease;
}
