/* Service Pages Specific Styles */

/* Compact Why Choose Us Section */
.why-choose-compact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fdfd 0%, #e8f8f5 100%);
}

.trust-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 135, 131, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-teal);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.15);
}

.trust-item .trust-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.trust-content h4 {
    color: var(--primary-teal);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.trust-content p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Washing Machine Types Section */
.washing-machine-types {
    padding: 80px 0;
    background: white;
}

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

.machine-type-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(45, 135, 131, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(45, 135, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.machine-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
}

.machine-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.2);
}

.machine-icon {
    margin-bottom: 20px;
}

.machine-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.machine-type-card h3 {
    color: var(--primary-teal);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.machine-type-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.machine-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, var(--primary-teal), var(--light-teal));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* E-commerce Style Pricing Section */
.services-pricing-ecommerce {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fdfd 0%, #e8f8f5 100%);
}

.offer-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.offer-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0 0 15px 0;
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
}

.offer-ending {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Pricing Sections - Issue Card Style */
.pricing-sections-container {
    margin-top: 40px;
}

.pricing-section-wrapper {
    margin-bottom: 40px;
}

.pricing-section-title {
    color: var(--primary-teal);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 10px;
    border-left: 4px solid var(--primary-teal);
}

.services-subcategories,
.installation-subcategories {
    margin-top: 20px;
}

.subcategory-section {
    margin-bottom: 30px;
}

.subcategory-title {
    color: var(--primary-teal);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}

.subcategory-title::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-size: 0.8rem;
}

/* Spare Parts Section - Issue Card Style */
.spare-parts-info {
    margin-top: 15px;
}

.spare-parts-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 135, 131, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-teal);
}

.spare-parts-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.15);
}

.spare-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.spare-details {
    flex: 1;
}

.spare-details h4 {
    color: var(--primary-teal);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.spare-details p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.spare-note {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

.spare-action {
    flex-shrink: 0;
}

.view-prices-btn {
    background: linear-gradient(45deg, var(--primary-teal), var(--light-teal));
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-prices-btn:hover {
    background: linear-gradient(45deg, #1e5f5c, #26c6da);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 135, 131, 0.4);
}

/* Common Issues - Simplified */
.common-issues-simple {
    padding: 80px 0;
    background: white;
}

.issues-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.issue-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 135, 131, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-teal);
}

.issue-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.15);
}

.issue-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.issue-details h4 {
    color: var(--primary-teal);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.issue-details p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.issues-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, var(--primary-teal), var(--light-teal));
    color: white;
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 135, 131, 0.4);
}

.cta-btn.secondary {
    background: white;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.15);
}

.cta-btn.secondary:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 135, 131, 0.3);
}

/* Redesigned CTA Section */
.cta-redesigned {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    position: relative;
    overflow: hidden;
}

.cta-redesigned::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 400 400"><circle cx="60" cy="60" r="3" fill="white" opacity="0.1"/><circle cx="340" cy="80" r="2" fill="white" opacity="0.08"/><circle cx="80" cy="320" r="2.5" fill="white" opacity="0.1"/><circle cx="320" cy="340" r="3.5" fill="white" opacity="0.07"/></svg>');
    background-size: 400px 400px;
    animation: floatSlow 45s infinite linear;
}

.cta-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-btn-new {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-new.primary {
    background: white;
    color: var(--primary-teal);
}

.cta-btn-new.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-btn-new.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn-new.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.btn-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .trust-grid-compact {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .machine-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mobile styling for new pricing sections */
    .pricing-sections-container {
        margin-top: 30px;
    }
    
    .pricing-section-wrapper {
        margin-bottom: 30px;
    }
    
    .pricing-section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .subcategory-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .spare-parts-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .spare-action {
        width: 100%;
    }
    
    .view-prices-btn {
        width: 100%;
        text-align: center;
    }
    
    .issues-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .issue-item {
        padding: 20px;
        gap: 15px;
    }
    
    .cta-content-new {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .offer-banner {
        padding: 20px 15px;
    }
    
    .offer-content h3 {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        font-size: 1.3rem;
        padding: 8px 16px;
    }
}

/* Hero Section - Enhanced Design with Better Spacing */
.hero {
    background: linear-gradient(145deg, #ffffff 0%, #f8fdfd 35%, #e8f8f5 70%, #f0fff4 100%);
    padding: 40px 0 20px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Remove extra gap */
}

.hero::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 400 400"><circle cx="60" cy="60" r="3" fill="%232D8783" opacity="0.06"/><circle cx="340" cy="80" r="2" fill="%231ED3CA" opacity="0.08"/><circle cx="80" cy="320" r="2.5" fill="%232D8783" opacity="0.06"/><circle cx="320" cy="340" r="3.5" fill="%231ED3CA" opacity="0.07"/><path d="M200,80 C220,90 220,110 200,120 C180,110 180,90 200,80" fill="%232D8783" opacity="0.04"/><rect x="100" y="200" width="8" height="6" rx="3" fill="%231ED3CA" opacity="0.05"/><rect x="280" y="180" width="6" height="4" rx="2" fill="%232D8783" opacity="0.04"/></svg>');
    background-size: 400px 400px;
    animation: floatSlow 45s infinite linear;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    padding-right: 20px;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 20px;
}

.hero-text h1 .highlight {
    color: var(--primary-teal);
    position: relative;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-grey);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 550px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-cta {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(45, 135, 131, 0.35);
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    box-shadow: 0 10px 30px rgba(45, 135, 131, 0.15);
}

.hero-cta.secondary:hover {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 135, 131, 0.15);
    transition: all 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(45, 135, 131, 0.2);
}

/* Hero Mobile Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2; /* Move text below image on mobile */
    }
    
    .hero-image {
        order: 1; /* Move image above text on mobile */
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-img {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 40px 0; /* Changed top padding to 40px */
        margin-top: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0px; /* Remove gap between photo and heading */
        text-align: center;
        padding: 0 25px;
        max-width: 100%;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-text h1 {
        font-size: 2.3rem;
        margin-bottom: 20px;
        line-height: 1.2;
        margin-top: 25px; /* Increased margin-top for better spacing */
    }
    
    .hero .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
        max-width: 100% !important; /* Remove width constraint on mobile with higher specificity */
        padding: 0 !important; /* Remove padding from about.css */
    }
    
    .hero-cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta {
        padding: 16px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        order: 1;
    }
    
    .hero-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 0 20px 0; /* Changed top padding to 40px */
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0 20px;
        gap: 0px; /* Remove gap between photo and heading */
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-top: 35px; /* Increased margin-top for max-width: 480px */
    }
    
    .hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
        max-width: 100% !important; /* Remove width constraint on mobile with higher specificity */
        padding: 0 !important; /* Remove padding from about.css */
    }
    
    .hero-cta {
        padding: 14px 25px;
        font-size: 14px;
        max-width: 250px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero-img {
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
    }
}

/* How Our Service Works Section */
.how-it-works {
    padding: 100px 0 120px 0;
    background: linear-gradient(135deg, #e8f8f5 0%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::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 700 700"><circle cx="150" cy="150" r="3" fill="%232D8783" opacity="0.07"/><circle cx="550" cy="180" r="2.5" fill="%231ED3CA" opacity="0.09"/><circle cx="180" cy="520" r="3.5" fill="%232D8783" opacity="0.08"/><circle cx="520" cy="550" r="3" fill="%231ED3CA" opacity="0.1"/><path d="M350,180 C380,200 380,230 350,250 C320,230 320,200 350,180" fill="%232D8783" opacity="0.05"/><rect x="200" y="350" width="12" height="10" rx="5" fill="%231ED3CA" opacity="0.06"/><rect x="470" y="330" width="10" height="8" rx="4" fill="%232D8783" opacity="0.05"/></svg>');
    background-size: 700px 700px;
    animation: floatSlow 65s infinite linear;
    pointer-events: none;
}

@keyframes floatSlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(1deg); }
    50% { transform: translate(-10px, 10px) rotate(-1deg); }
    75% { transform: translate(15px, -15px) rotate(0.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    counter-reset: step-counter;
}

/* Add connecting lines between steps on desktop */
@media (min-width: 1024px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 70px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--primary-teal) 15%, 
            var(--light-teal) 50%, 
            var(--primary-teal) 85%, 
            transparent 100%);
        z-index: -1;
        opacity: 0.3;
    }
    
    .process-steps::after {
        content: '';
        position: absolute;
        top: 65px;
        left: 12%;
        right: 12%;
        height: 10px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(45, 135, 131, 0.1) 25%, 
            rgba(30, 211, 202, 0.1) 75%, 
            transparent 100%);
        border-radius: 5px;
        z-index: -1;
        filter: blur(3px);
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: all 0.4s ease;
}

.step-card::after {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(45, 135, 131, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

.step-card:hover::before {
    height: 8px;
    background: linear-gradient(90deg, var(--light-teal), var(--primary-teal));
}

.step-card:hover::after {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(45, 135, 131, 0.4);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.step-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(45, 135, 131, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.4);
}

.step-card:hover .step-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

/* Individual step icons with unique SVGs */
.step-card:nth-child(1) .step-icon::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.5-4h-5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5c.28 0 .5.22.5.5s-.22.5-.5.5zm0-2h-5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5h5c.28 0 .5.22.5.5s-.22.5-.5.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-card:nth-child(2) .step-icon::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-4.97 0-9 4.03-9 9 0 4.17 2.84 7.67 6.69 8.69L12 22l2.31-2.31C18.16 18.67 21 15.17 21 11c0-4.97-4.03-9-9-9zm0 2c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-card:nth-child(3) .step-icon::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-card:nth-child(4) .step-icon::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-left: 0;
}

.step-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments for How Our Service Works */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .step-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .step-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .step-card::after {
        width: 24px;
        height: 24px;
        top: 10px;
        right: 10px;
        font-size: 0.9rem;
    }

    .step-card:nth-child(1) .step-icon::after,
    .step-card:nth-child(2) .step-icon::after,
    .step-card:nth-child(3) .step-icon::after,
    .step-card:nth-child(4) .step-icon::after {
        width: 30px;
        height: 30px;
    }
}

/* Trust Section - Why Choose Our Service */
.trust-section {
    padding: 150px 50px 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 50%, #e8f8f5 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::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 800 800"><circle cx="200" cy="200" r="4" fill="%232D8783" opacity="0.06"/><circle cx="600" cy="240" r="3" fill="%231ED3CA" opacity="0.08"/><circle cx="240" cy="560" r="4.5" fill="%232D8783" opacity="0.07"/><circle cx="560" cy="600" r="3.5" fill="%231ED3CA" opacity="0.09"/><path d="M400,240 C430,260 430,300 400,320 C370,300 370,260 400,240" fill="%232D8783" opacity="0.04"/><rect x="300" y="400" width="14" height="12" rx="6" fill="%231ED3CA" opacity="0.05"/><rect x="480" y="380" width="12" height="10" rx="5" fill="%232D8783" opacity="0.04"/></svg>');
    background-size: 800px 800px;
    animation: floatSlow 60s infinite linear;
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.trust-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(45, 135, 131, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    border-radius: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.trust-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-teal), var(--light-teal), var(--primary-teal));
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

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

.trust-card:hover::after {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.trust-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.5s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 15px rgba(45, 135, 131, 0.3));
}

.trust-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.trust-card:hover h3 {
    color: var(--primary-teal);
    transform: translateY(-2px);
}

.trust-card p {
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.trust-card:hover p {
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* Services Section - AC Types We Service */
.services {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f8fdfd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::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 600 600"><circle cx="150" cy="150" r="3" fill="%232D8783" opacity="0.05"/><circle cx="450" cy="180" r="2.5" fill="%231ED3CA" opacity="0.07"/><circle cx="180" cy="420" r="3.5" fill="%232D8783" opacity="0.06"/><circle cx="420" cy="450" r="3" fill="%231ED3CA" opacity="0.08"/></svg>');
    background-size: 600px 600px;
    animation: floatSlow 50s infinite linear;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 40px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(45, 135, 131, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: all 0.4s ease;
}

.service-card:hover::before {
    height: 8px;
    background: linear-gradient(90deg, var(--light-teal), var(--primary-teal));
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 80px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(45, 135, 131, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.3);
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-teal);
}

.service-card p {
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.service-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(45, 135, 131, 0.1);
    color: var(--primary-teal);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

/* Pricing Offer Styles */
.pricing-offer {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
    border: 3px solid var(--primary-teal);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 135, 131, 0.15);
}

.pricing-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal), var(--primary-teal));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.offer-badge {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

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

.price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.8rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discounted-price {
    font-size: 3rem;
    color: var(--primary-teal);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(45, 135, 131, 0.1);
}

.savings {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.visit-charges-note {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 12px 20px;
    margin: 20px 0;
    color: #856404;
    font-size: 15px;
    text-align: center;
}

.visit-charges-note strong {
    color: #495057;
}

.countdown-timer {
    background: rgba(45, 135, 131, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.timer-text {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.timer-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(45, 135, 131, 0.1);
}

.timer-subtext {
    color: var(--text-grey);
    font-size: 14px;
    font-style: italic;
}

/* Updated Issue Price Styles */
.issue-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.price-discounted {
    font-size: 1.4rem;
    color: var(--primary-teal);
    font-weight: 700;
    background: rgba(45, 135, 131, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.issue-card:hover .price-discounted {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.05);
}

/* Common Issues Section */
.issues-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #e8f8f5 0%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.issues-section::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 700 700"><circle cx="175" cy="175" r="3.5" fill="%232D8783" opacity="0.06"/><circle cx="525" cy="210" r="3" fill="%231ED3CA" opacity="0.08"/><circle cx="210" cy="490" r="4" fill="%232D8783" opacity="0.07"/><circle cx="490" cy="525" r="3.5" fill="%231ED3CA" opacity="0.09"/></svg>');
    background-size: 700px 700px;
    animation: floatSlow 55s infinite linear;
    pointer-events: none;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.issue-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: height 0.3s ease;
}

.issue-card:hover::before {
    height: 6px;
}

.issue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.issue-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}

.issue-card:hover .issue-icon {
    transform: scale(1.1) rotate(5deg);
}

.issue-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.issue-card:hover h3 {
    color: var(--primary-teal);
}

.issue-card p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.issue-card:hover p {
    color: var(--text-dark);
}

.visit-charge {
    background: rgba(45, 135, 131, 0.1);
    color: var(--primary-teal);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.issue-card:hover .visit-charge {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.05);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .trust-section,
    .services,
    .issues-section {
        padding: 80px 30px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trust-card {
        padding: 35px 25px;
    }
    
    .trust-icon {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }
    
    .trust-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .trust-card p {
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 35px 30px;
    }
    
    .service-image {
        width: 70px;
        height: 70px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 15px;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .issue-card {
        padding: 30px 25px;
    }
    
    .issue-icon {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }
    
    .issue-card h3 {
        font-size: 1.1rem;
    }
    
    .issue-card p {
        font-size: 14px;
    }
    
    .visit-charge {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    /* Mobile Pricing Offer Styles */
    .pricing-offer {
        padding: 25px 20px;
        margin: 25px 0;
    }
    
    .price-display {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .original-price {
        font-size: 1.4rem;
    }
    
    .discounted-price {
        font-size: 2.5rem;
    }
    
    .savings {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .countdown-timer {
        padding: 15px;
    }
    
    .timer-display {
        font-size: 2rem;
    }
    
    .timer-text {
        font-size: 15px;
    }
    
    .timer-subtext {
        font-size: 13px;
    }
    
    .visit-charges-note {
        padding: 10px 15px;
        font-size: 14px;
        margin: 15px 0;
    }
    
    .price-original {
        font-size: 0.9rem;
    }
    
    .price-discounted {
        font-size: 1.2rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .trust-section,
    .services,
    .issues-section {
        padding: 60px 20px;
    }
    
    .trust-card {
        padding: 30px 20px;
    }
    
    .trust-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .trust-card h3 {
        font-size: 1.1rem;
    }
    
    .trust-card p {
        font-size: 14px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-image {
        width: 60px;
        height: 60px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .issue-card {
        padding: 25px 20px;
    }
    
    .issue-icon {
        font-size: 2rem;
    }
    
    .issue-card h3 {
        font-size: 1rem;
    }
    
    .issue-card p {
        font-size: 13px;
    }
    
    .visit-charge {
        font-size: 0.95rem;
        padding: 6px 14px;
    }
    
    /* Mobile Pricing Offer Styles for Small Screens */
    .pricing-offer {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .offer-badge {
        font-size: 13px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
    
    .discounted-price {
        font-size: 2.2rem;
    }
    
    .savings {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .countdown-timer {
        padding: 12px;
    }
    
    .timer-display {
        font-size: 1.8rem;
    }
    
    .timer-text {
        font-size: 14px;
    }
    
    .timer-subtext {
        font-size: 12px;
    }
    
    .visit-charges-note {
        padding: 8px 12px;
        font-size: 13px;
        margin: 12px 0;
    }
    
    .price-original {
        font-size: 0.8rem;
    }
    
    .price-discounted {
        font-size: 1.1rem;
        padding: 5px 10px;
    }
}

/* Repair Process Section */
.repair-process,
.process {
    padding: 100px 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
    position: relative;
    overflow: hidden;
}

.repair-process::before,
.process::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 600 600"><circle cx="120" cy="120" r="2.5" fill="%232D8783" opacity="0.06"/><circle cx="480" cy="150" r="2" fill="%231ED3CA" opacity="0.08"/><circle cx="150" cy="450" r="3" fill="%232D8783" opacity="0.07"/><circle cx="450" cy="480" r="2.5" fill="%231ED3CA" opacity="0.09"/></svg>');
    background-size: 600px 600px;
    animation: floatSlow 50s infinite linear;
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.step {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.1);
    border: 1px solid rgba(45, 135, 131, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: height 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.step:hover::before {
    height: 6px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(45, 135, 131, 0.25);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(45, 135, 131, 0.4);
}

.step h3 {
    color: var(--primary-teal);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.step:hover h3 {
    color: var(--text-dark);
}

.step p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.step:hover p {
    color: var(--text-dark);
}

/* CTA Buttons Section */
.cta-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #e8f8f5 0%, #f0fff4 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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 500 500"><circle cx="100" cy="100" r="2" fill="%232D8783" opacity="0.05"/><circle cx="400" cy="120" r="1.5" fill="%231ED3CA" opacity="0.07"/><circle cx="120" cy="380" r="2.5" fill="%232D8783" opacity="0.06"/><circle cx="380" cy="400" r="2" fill="%231ED3CA" opacity="0.08"/></svg>');
    background-size: 500px 500px;
    animation: floatSlow 40s infinite linear;
    pointer-events: none;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Process and CTA */
@media (max-width: 768px) {
    .repair-process,
    .process,
    .cta-section {
        padding: 80px 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .step h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .repair-process,
    .process,
    .cta-section {
        padding: 60px 20px;
    }
    
    .step {
        padding: 25px 18px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        gap: 15px;
    }
}

/* Service Page Pricing Cards - Google Ads Compliant Design */
.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(45, 135, 131, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 135, 131, 0.05), transparent);
    transition: left 0.6s ease;
}

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

.service-pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(45, 135, 131, 0.2);
    border-color: rgba(45, 135, 131, 0.3);
}

.service-pricing-card.featured {
    border: 2px solid var(--primary-teal);
    transform: scale(1.05);
    position: relative;
}

.service-pricing-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-teal);
    color: white;
    padding: 5px 20px;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h3 {
    color: var(--text-dark);
    font-size: var(--h3-size);
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.pricing-header .price-note {
    color: var(--text-grey);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    color: var(--text-grey);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 16px;
}

.pricing-features li.not-included {
    opacity: 0.5;
}

.pricing-features li.not-included::before {
    content: '✗';
    color: #e57373;
}

/* Service Details Section */
.service-details {
    background: rgba(248, 255, 254, 0.6);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    margin: 60px 0;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.service-details h2 {
    color: var(--primary-teal);
    font-size: var(--h2-size);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-md);
    padding: 30px 25px;
    border: 1px solid rgba(45, 135, 131, 0.1);
    transition: var(--transition-normal);
}

.service-detail-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(45, 135, 131, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 135, 131, 0.1);
}

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

.service-detail-card p {
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card li {
    color: var(--text-grey);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.service-detail-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

/* Service Process Steps */
.service-process {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.service-process h2 {
    color: var(--text-dark);
    font-size: var(--h2-size);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    color: var(--text-dark);
    font-size: var(--h3-size);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-grey);
    line-height: 1.6;
}

/* Service FAQ Section */
.service-faq {
    background: rgba(248, 255, 254, 0.4);
    padding: 80px 0;
}

.service-faq h2 {
    color: var(--text-dark);
    font-size: var(--h2-size);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.service-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.service-faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-md);
    padding: 25px;
    border: 1px solid rgba(45, 135, 131, 0.1);
    transition: var(--transition-normal);
}

.service-faq-item:hover {
    border-color: rgba(45, 135, 131, 0.2);
    box-shadow: 0 5px 20px rgba(45, 135, 131, 0.1);
}

.service-faq-item h4 {
    color: var(--primary-teal);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-faq-item p {
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* Service Guarantee Section */
.service-guarantee {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-guarantee::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="guarantee-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23guarantee-pattern)"/></svg>');
}

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

.service-guarantee h2 {
    font-size: var(--h2-size);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-guarantee p {
    font-size: var(--body-large);
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.guarantee-feature {
    text-align: center;
}

.guarantee-feature .feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.guarantee-feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.guarantee-feature p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-pricing-grid,
    .service-details-grid,
    .process-steps,
    .service-faq-grid,
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-pricing-card,
    .service-detail-card,
    .service-faq-item {
        padding: 25px 20px;
    }
    
    .service-details {
        padding: 40px 25px;
        margin: 40px 0;
    }
    
    .service-process,
    .service-faq,
    .service-guarantee {
        padding: 60px 0;
    }
    
    .pricing-header .price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-pricing-card.featured {
        transform: none;
    }
    
    .service-pricing-card,
    .service-detail-card,
    .service-faq-item {
        padding: 20px 15px;
    }
    
    .service-details {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Installation Pricing Styles */
.services-pricing {
    padding: 60px 0;
    background: #f8fafc;
}

.installation-pricing {
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.installation-pricing h3 {
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.installation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.installation-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.installation-card:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.installation-card h4 {
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: #374151;
}

.service-row .price-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-row .original-price {
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.service-row .discounted-price {
    font-size: 1.1rem;
    color: #059669;
    font-weight: 700;
}

.pricing-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 16px;
    margin-top: 20px;
}

.pricing-note p {
    margin: 0;
    color: #92400e;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive styles for installation pricing */
@media (max-width: 768px) {
    .installation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .installation-card {
        padding: 16px;
    }
    
    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .service-row .price-display {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .installation-pricing {
        padding: 20px;
        margin-top: 30px;
    }
    
    .installation-pricing h3 {
        font-size: 1.3rem;
    }
}

/* AC Services & Pricing Section */
.services-pricing {
    padding: 80px 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
    position: relative;
    overflow: hidden;
}

.services-pricing::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 600 600"><circle cx="150" cy="150" r="3" fill="%232D8783" opacity="0.05"/><circle cx="450" cy="180" r="2.5" fill="%231ED3CA" opacity="0.07"/><circle cx="180" cy="420" r="3.5" fill="%232D8783" opacity="0.06"/><circle cx="420" cy="450" r="3" fill="%231ED3CA" opacity="0.08"/></svg>');
    background-size: 600px 600px;
    animation: floatSlow 50s infinite linear;
    pointer-events: none;
}

.service-category {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.category-title {
    color: var(--primary-teal);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    border-radius: 2px;
}

/* Service Cards for AC Services */
.services-pricing .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services-pricing .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.1);
    border: 1px solid rgba(45, 135, 131, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.services-pricing .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: height 0.3s ease;
}

.services-pricing .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.services-pricing .service-card:hover::before {
    height: 6px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-header h4 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.service-badge {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-description {
    margin-bottom: 20px;
}

.service-description p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 15px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.service-pricing .original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
}

.service-pricing .discounted-price {
    color: var(--primary-teal);
    font-size: 1.8rem;
    font-weight: 700;
}

.service-pricing .savings {
    background: #dcfce7;
    color: #166534;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-note {
    margin-bottom: 20px;
    text-align: center;
}

.service-note p {
    color: #92400e;
    font-size: 0.9rem;
    margin: 0;
}

.service-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.book-service-btn,
.book-online-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.book-service-btn {
    background: var(--primary-teal);
    color: white;
}

.book-service-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.book-online-btn {
    background: rgba(45, 135, 131, 0.1);
    color: var(--primary-teal);
    border: 1px solid rgba(45, 135, 131, 0.2);
}

.book-online-btn:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-2px);
}

/* Installation Services */
.installation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.installation-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(45, 135, 131, 0.1);
}

.installation-type {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.installation-type::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-teal);
    border-radius: 1px;
}

.installation-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.installation-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(45, 135, 131, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.installation-card:hover {
    border-color: rgba(45, 135, 131, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 135, 131, 0.1);
}

.installation-info {
    flex: 1;
}

.installation-info h5 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.installation-info p {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.installation-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.installation-pricing .original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.installation-pricing .discounted-price {
    color: var(--primary-teal);
    font-size: 1.3rem;
    font-weight: 700;
}

.installation-pricing .savings {
    background: #dcfce7;
    color: #166534;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.book-installation-btn {
    background: var(--primary-teal);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.book-installation-btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.installation-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    text-align: center;
}

.installation-note p {
    color: #92400e;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for AC Services */
@media (max-width: 768px) {
    .services-pricing {
        padding: 60px 30px;
    }
    
    .services-pricing .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-pricing .service-card {
        padding: 25px 20px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .installation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .installation-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .installation-pricing {
        margin-right: 0;
        align-self: flex-end;
    }
    
    .book-installation-btn {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-pricing {
        padding: 50px 20px;
    }
    
    .services-pricing .service-card {
        padding: 20px 15px;
    }
    
    .service-header h4 {
        font-size: 1.2rem;
    }
    
    .service-pricing .discounted-price {
        font-size: 1.5rem;
    }
    
    .installation-section {
        padding: 20px;
    }
    
    .installation-card {
        padding: 15px;
    }
}

/* Pricing Section Styling for Widgets */
.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Visit Charges Section (Section 1) */
.visit-charges-section {
    margin-bottom: 4rem;
}

.visit-charges-card {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.visit-charges-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.visit-charges-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.visit-charges-card .card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.visit-charges-card .discount-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.visit-charges-card .price-display {
    margin-bottom: 1rem;
}

.visit-charges-card .original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 1rem;
}

.visit-charges-card .discounted-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.visit-charges-card .savings-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffd700;
}

.visit-charges-card .info-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.visit-charges-card .info-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.visit-charges-card .disclaimer-text {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5;
}

.visit-charges-card .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.visit-charges-card .cta-btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.visit-charges-card .cta-btn.primary {
    background: white;
    color: #007bff;
}

.visit-charges-card .cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.visit-charges-card .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.visit-charges-card .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Modal Styling for Visit Charges Info */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-content .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.modal-content .close:hover {
    color: #000;
}

.modal-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.modal-body li:last-child {
    border-bottom: none;
}

.modal-body p {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-section .section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.pricing-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.pricing-section .section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Services Section (Generated by Widget) */
.category-services-section {
    margin-bottom: 3rem;
}

.category-services-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-services-section .section-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-services-section .section-header p {
    color: #6c757d;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-price {
    color: #dc3545;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
}

.discounted-price {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-note {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #856404;
}

.service-actions {
    display: flex;
    gap: 0.75rem;
}

.book-service-btn, .book-online-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.book-service-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.book-service-btn:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.book-online-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.book-online-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Category Installation Section (Generated by Widget) */
.category-installation-section {
    margin-bottom: 3rem;
}

.category-installation-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-installation-section .section-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-installation-section .section-header p {
    color: #6c757d;
    font-size: 1rem;
}

.installation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.installation-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.installation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.installation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.installation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.installation-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.installation-card .discount-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.installation-card .price-display {
    margin-bottom: 1rem;
}

.installation-card .original-price {
    color: #dc3545;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
    margin-right: 0.75rem;
}

.installation-card .discounted-price {
    color: #28a745;
    font-size: 1.8rem;
    font-weight: 800;
}

.installation-card .savings-text {
    color: #28a745;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.installation-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.installation-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.installation-actions .book-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.installation-actions .book-btn.primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.installation-actions .book-btn.primary:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.installation-actions .book-btn.secondary {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
}

.installation-actions .book-btn.secondary:hover {
    background: #28a745;
    color: white;
    transform: translateY(-2px);
}

.installation-groups {
    display: grid;
    gap: 2rem;
}

.installation-group {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #dee2e6;
}

.installation-group h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.installation-group h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

.installation-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.installation-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.installation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.installation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.installation-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.installation-item .service-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.installation-item .price-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.installation-item .original-price {
    color: #dc3545;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}

.installation-item .discounted-price {
    color: #28a745;
    font-size: 1.3rem;
    font-weight: 700;
}

.installation-item .service-actions {
    display: flex;
    gap: 0.75rem;
}

.installation-item .book-service-btn {
    flex: 1;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.installation-item .book-service-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Design for Pricing Widgets */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-section .section-header h2 {
        font-size: 2rem;
    }
    
    /* Visit Charges Responsive */
    .visit-charges-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .visit-charges-card .card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .visit-charges-card .card-header h3 {
        font-size: 1.5rem;
    }
    
    .visit-charges-card .discounted-price {
        font-size: 2.5rem;
    }
    
    .visit-charges-card .cta-buttons {
        flex-direction: column;
    }
    
    .visit-charges-card .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Modal Responsive */
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .discount-badge {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .installation-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .installation-group {
        padding: 1.5rem;
    }
    
    .installation-group h3 {
        font-size: 1.3rem;
    }
    
    .installation-item {
        padding: 1.25rem;
    }
    
    .installation-item h4 {
        font-size: 1.1rem;
    }
    
    .installation-item .discounted-price {
        font-size: 1.2rem;
    }
}

/* Enhanced Visit Charges Widget Section */
.category-visit-charges-section {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.category-visit-charges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #fd7e14, #ffc107);
}

.category-visit-charges-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-visit-charges-section .section-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.category-visit-charges-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #fd7e14);
    border-radius: 2px;
}

.category-visit-charges-section .section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.visit-charges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.visit-charge-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.visit-charge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.visit-charge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.visit-charge-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.visit-charge-header h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.visit-charge-type {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.visit-charge-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.visit-charge-pricing .original-price {
    color: #dc3545;
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.visit-charge-pricing .discounted-price {
    color: #dc3545;
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.visit-charge-pricing .savings-text {
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

.visit-charge-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.visit-charge-actions {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.visit-charge-actions .book-btn {
    padding: 0.9rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.visit-charge-actions .book-btn.primary {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    border: none;
}

.visit-charge-actions .book-btn.primary:hover {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.visit-charge-actions .info-btn {
    background: transparent;
    color: #6c757d;
    border: 2px solid #dee2e6;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
}

.visit-charge-actions .info-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
}

/* Visit Charges Info Modal */
.visit-charges-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.visit-charges-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.visit-charges-modal-header {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.visit-charges-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.visit-charges-modal-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.visit-charges-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.visit-charges-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.visit-charges-modal-body {
    padding: 2rem;
}

.visit-charges-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visit-charges-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visit-charges-includes li:last-child {
    border-bottom: none;
}

.visit-charges-includes li::before {
    content: '✓';
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.visit-charges-note {
    background: #f8f9fa;
    border-left: 4px solid #dc3545;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0 10px 10px 0;
}

.visit-charges-note strong {
    color: #dc3545;
    display: block;
    margin-bottom: 0.5rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .category-visit-charges-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .category-visit-charges-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .visit-charges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visit-charge-card {
        padding: 1.5rem;
    }
    
    .visit-charges-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .visit-charges-modal-header {
        padding: 1.5rem;
    }
    
    .visit-charges-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .visit-charges-modal-body {
        padding: 1.5rem;
    }
}

/* ===== SPARE PARTS WIDGET STYLES ===== */
.spare-parts-section {
    background: linear-gradient(135deg, #f8fdfd 0%, #e8f8f5 100%);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.spare-parts-section::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 600 600"><circle cx="150" cy="150" r="3" fill="%232D8783" opacity="0.06"/><circle cx="450" cy="180" r="2.5" fill="%231ED3CA" opacity="0.08"/><circle cx="180" cy="420" r="3.5" fill="%232D8783" opacity="0.07"/><circle cx="420" cy="450" r="3" fill="%231ED3CA" opacity="0.09"/></svg>');
    background-size: 600px 600px;
    animation: floatSlow 50s infinite linear;
    pointer-events: none;
}

.spare-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.spare-part-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.1);
    border: 1px solid rgba(45, 135, 131, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.spare-part-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--light-teal));
    transition: height 0.3s ease;
}

.spare-part-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(45, 135, 131, 0.15);
    border-color: rgba(45, 135, 131, 0.2);
    background: rgba(255, 255, 255, 1);
}

.spare-part-card:hover::before {
    height: 6px;
}

.part-header {
    margin-bottom: 20px;
}

.part-header h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.part-code {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 600;
    background: rgba(45, 135, 131, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 5px;
}

.part-brand {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.part-pricing {
    margin: 20px 0;
    padding: 15px;
    background: rgba(45, 135, 131, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-teal);
}

.part-pricing .price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.part-pricing .original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.part-pricing .discounted-price {
    font-size: 1.4rem;
    color: var(--primary-teal);
    font-weight: 700;
}

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

.discount-badge {
    background: var(--accent-orange);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.savings-text {
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.part-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 15px 0;
}

.part-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
}

.availability-status.available {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
}

.availability-status.limited {
    background: rgba(251, 146, 60, 0.1);
    color: var(--accent-orange);
}

.availability-status.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.warranty-info {
    color: var(--primary-teal);
    font-size: 0.85rem;
    font-weight: 500;
}

.compatible-models {
    margin: 15px 0;
    padding: 12px;
    background: rgba(45, 135, 131, 0.05);
    border-radius: 12px;
}

.compatible-models strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.models-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.model-tag {
    background: rgba(45, 135, 131, 0.1);
    color: var(--primary-teal);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.more-models {
    background: rgba(45, 135, 131, 0.2);
    color: var(--primary-teal);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.part-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.part-actions .book-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.part-actions .book-btn.primary {
    background: var(--primary-teal);
    color: white;
}

.part-actions .book-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.part-actions .book-btn.secondary {
    background: rgba(45, 135, 131, 0.1);
    color: var(--primary-teal);
    border: 1px solid rgba(45, 135, 131, 0.2);
}

.part-actions .book-btn.secondary:hover {
    background: rgba(45, 135, 131, 0.15);
    border-color: var(--primary-teal);
}

.spare-parts-note {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.1);
    border: 1px solid rgba(45, 135, 131, 0.1);
    position: relative;
    z-index: 2;
}

.spare-parts-note h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.spare-parts-note ul {
    list-style: none;
    padding: 0;
}

.spare-parts-note li {
    padding: 8px 0;
    color: var(--text-medium);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.spare-parts-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.pricing-disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid rgba(45, 135, 131, 0.1);
}

.cta-section {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 135, 131, 0.1);
    border: 1px solid rgba(45, 135, 131, 0.1);
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.cta-section p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

/* Part Details Modal */
.part-details-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.part-details-modal .modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.part-details-modal .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.part-details-modal .close:hover {
    color: var(--text-dark);
}

.part-details-modal h3 {
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    color: white;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.5rem;
}

.part-details-modal .modal-body {
    padding: 30px;
}

.part-info p {
    margin: 12px 0;
    color: var(--text-medium);
    line-height: 1.6;
}

.part-info strong {
    color: var(--text-dark);
}

.compatible-models-full h4 {
    color: var(--text-dark);
    margin: 25px 0 15px 0;
    font-size: 1.1rem;
}

.models-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-actions {
    margin-top: 30px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .spare-parts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spare-part-card {
        padding: 20px;
    }
    
    .part-actions {
        flex-direction: column;
    }
    
    .part-pricing .price-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .discount-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .part-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .models-list {
        justify-content: flex-start;
    }
    
    .part-details-modal .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .part-details-modal .modal-body {
        padding: 20px;
    }
}