/* Hero Pricing Highlights */
.pricing-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.pricing-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
}

.pricing-intro i {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1.2em;
}

.pricing-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.price-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-price {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    transform: scale(1.05);
}

.service-name {
    display: block;
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-weight: 500;
}

.price-item .price {
    display: block;
    font-size: 1.3em;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 5px;
}

.savings {
    display: block;
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: bold;
}

/* Clean Compact Services Design */
.luxury-services.compact {
    padding: 40px 0;
    background: #1a1a1a;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-intro {
    text-align: center;
    margin-bottom: 30px;
}

.services-intro h2 {
    color: #ffffff;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.services-intro p {
    color: #cccccc;
    font-size: 1.1em;
}

/* Pricing Disclaimer */
.pricing-disclaimer {
    background: linear-gradient(145deg, #252525, #2a2a2a);
    border: 1px solid #1e3a8a;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px auto 10px;
    max-width: 90%;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.pricing-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #1e3a8a);
}

.pricing-disclaimer i {
    color: #3b82f6;
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0;
}

.pricing-disclaimer p {
    color: #cccccc;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* Simple Grid Layout */
.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

/* Enhanced Service Sections */
.service-section {
    background: linear-gradient(145deg, #2a2a2a, #333333);
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Make Add-On Services section span the full width */
.service-section:nth-child(5) {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, #252525, #2d2d2d);
    border: 1px solid #1e3a8a;
}

.service-section:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #1e3a8a);
}

.service-section:nth-child(5) .service-header {
    border-bottom-color: rgba(59, 130, 246, 0.3);
    text-align: center;
}

.service-section:nth-child(5) .service-title {
    color: #3b82f6;
}

/* Highlight for primary services */
.service-section:nth-child(1), .service-section:nth-child(2), .service-section:nth-child(3), .service-section:nth-child(4) {
    border: 1px solid #1e3a8a;
    background: linear-gradient(145deg, #2d3748, #2a2a2a);
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.15);
}

.service-section:nth-child(1)::before, .service-section:nth-child(2)::before, .service-section:nth-child(3)::before, .service-section:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #1e3a8a);
}

.service-section:hover {
    border-color: #666666;
    background: linear-gradient(145deg, #333333, #383838);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.service-section:nth-child(1):hover, .service-section:nth-child(2):hover, .service-section:nth-child(3):hover, .service-section:nth-child(4):hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.25);
}

.service-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #444444;
    position: relative;
}

.service-section:nth-child(1) .service-header, 
.service-section:nth-child(2) .service-header,
.service-section:nth-child(3) .service-header,
.service-section:nth-child(4) .service-header {
    border-bottom-color: rgba(59, 130, 246, 0.3);
}

.service-title {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-section:nth-child(1) .service-title, 
.service-section:nth-child(2) .service-title,
.service-section:nth-child(3) .service-title,
.service-section:nth-child(4) .service-title {
    color: #3b82f6;
}

.service-subtitle {
    color: #cccccc;
    font-size: 0.95em;
    margin: 8px 0 0 0;
}

/* Enhanced Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Horizontal options for add-ons */
.horizontal-options {
    margin: 0 auto;
    max-width: 80%;
}

.horizontal-option {
    width: 100%;
}

/* Style for add-on options */
.horizontal-options .service-option {
    padding: 16px;
    height: 100%;
}

.service-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px;
    background: linear-gradient(145deg, #1a1a1a, #222222);
    border-radius: 8px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.service-option:hover {
    border-color: #666666;
    background: linear-gradient(145deg, #222222, #2a2a2a);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Highlight popular options */
.service-section:nth-child(1) .service-option:nth-child(2),
.service-section:nth-child(2) .service-option:nth-child(2),
.service-section:nth-child(3) .service-option:nth-child(2),
.service-section:nth-child(4) .service-option:nth-child(2) {
    border-color: #1e3a8a;
    position: relative;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.15);
}

.service-section:nth-child(1) .service-option:nth-child(2):hover,
.service-section:nth-child(2) .service-option:nth-child(2):hover,
.service-section:nth-child(3) .service-option:nth-child(2):hover,
.service-section:nth-child(4) .service-option:nth-child(2):hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.option-info {
    flex: 1;
}

.option-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.15em;
    margin-bottom: 8px;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

/* Add star to popular options */
.service-section:nth-child(1) .service-option:nth-child(2) .option-name::before,
.service-section:nth-child(2) .service-option:nth-child(2) .option-name::before,
.service-section:nth-child(3) .service-option:nth-child(2) .option-name::before,
.service-section:nth-child(4) .service-option:nth-child(2) .option-name::before {
    content: '★';
    color: #3b82f6;
    margin-right: 5px;
    font-size: 0.9em;
}

.option-features {
    color: #cccccc;
    font-size: 0.9em;
    line-height: 1.5;
    position: relative;
    padding-left: 0;
}

/* Feature highlight for primary services */
.service-section:nth-child(1) .service-option:nth-child(2) .option-features,
.service-section:nth-child(2) .service-option:nth-child(2) .option-features,
.service-section:nth-child(3) .service-option:nth-child(2) .option-features,
.service-section:nth-child(4) .service-option:nth-child(2) .option-features {
    color: #d1d5db;
}

.option-pricing {
    text-align: right;
    margin-left: 20px;
    min-width: 120px;
}

.option-price {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px;
}

.option-savings {
    background: #1e3a8a;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* Enhanced Action Buttons */
.service-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444444;
    text-align: center;
}

.service-section:nth-child(1) .service-actions,
.service-section:nth-child(2) .service-actions,
.service-section:nth-child(3) .service-actions,
.service-section:nth-child(4) .service-actions {
    border-top-color: rgba(59, 130, 246, 0.3);
}

.btn-service {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-section:nth-child(1) .btn-service,
.service-section:nth-child(2) .btn-service,
.service-section:nth-child(3) .btn-service,
.service-section:nth-child(4) .btn-service {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-service::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-service:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.service-section:nth-child(1) .btn-service:hover,
.service-section:nth-child(2) .btn-service:hover,
.service-section:nth-child(3) .btn-service:hover,
.service-section:nth-child(4) .btn-service:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-service:hover::after {
    opacity: 1;
    top: -100%;
    left: -100%;
}

/* Enhanced Service Notes */
.service-notes {
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(145deg, #2a2a2a, #333333);
    border-radius: 10px;
    border: 1px solid #444444;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.note-item {
    display: flex;
    align-items: center;
    color: #d1d5db;
    font-size: 0.95em;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.note-item:hover {
    background: rgba(30, 58, 138, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.note-item i {
    margin-right: 15px;
    color: #3b82f6;
    font-size: 1.2em;
}

/* Pricing Highlight */
.pricing-highlight {
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.pricing-intro {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.price-item {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: #666666;
    background: #222222;
}

.price-item .service-name {
    color: #cccccc;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.price-item .price {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-item .savings {
    background: #1e3a8a;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .option-pricing {
        margin-left: 0;
        margin-top: 10px;
        text-align: left;
    }
    
    .horizontal-options {
        grid-template-columns: 1fr;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-disclaimer {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }
    
    .pricing-disclaimer i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .pricing-disclaimer p {
        text-align: center;
    }
    
    .pricing-showcase {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .services-intro h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 15px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .service-title {
        font-size: 1.2em;
    }
    
    .option-name {
        font-size: 1em;
    }
    
    .option-price {
        font-size: 1.1em;
    }
}

/* New Pricing Structure Styles */

/* Service Notices */
.service-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-weight: 500;
    color: #2c3e50;
}

.service-notice i {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1.1em;
}

/* Bundle Cards Enhanced */
.silver-bundle {
    border: 2px solid #c0c0c0;
    position: relative;
}

.gold-bundle {
    border: 3px solid #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.featured {
    z-index: 2;
}

/* Savings Highlights */
.savings-highlight {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

.savings-highlight i {
    margin-right: 5px;
}

.longevity-highlight {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #27ae60, #16a085);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

.longevity-highlight i {
    margin-right: 5px;
}

/* Pricing Display */
.starting-price {
    color: #d4af37;
    font-size: 1.8em;
    font-weight: bold;
}

.paint-correction {
    display: block;
    font-size: 0.9em;
    color: #7f8c8d;
    margin-top: 5px;
}

/* Add-on Offers */
.addon-offer {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0;
    font-weight: 600;
}

.addon-highlight {
    font-size: 1.1em;
}

.special-addons {
    background: #f8f9fa;
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.special-addons h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.addon-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-pricing span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
}

.addon-pricing small {
    color: #27ae60;
    font-weight: bold;
}

/* Ceramic Maintenance */
.ceramic-maintenance {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    text-align: center;
}

.ceramic-maintenance h4 {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.ceramic-maintenance small {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 15px;
    margin-left: 8px;
}

/* Individual Services */
.individual-services {
    margin: 50px 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.individual-services h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8em;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-row:hover {
    transform: translateX(5px);
}

.service-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.service-info p {
    color: #7f8c8d;
    margin-bottom: 5px;
}

.duration {
    background: #ecf0f1;
    color: #34495e;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
}

.service-pricing .price {
    color: #d4af37;
    font-size: 1.5em;
    font-weight: bold;
}

/* Add-On Services */
.addon-services {
    margin: 50px 0;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    border-radius: 15px;
    padding: 30px;
}

.addon-services h3 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8em;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.addon-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.addon-item h4 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.addon-pricing-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-pricing-options span {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Disclaimers Section */
.service-disclaimers {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin: 50px 0;
}

.service-disclaimers h3 {
    color: white;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8em;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.disclaimer-item i {
    color: #f39c12;
    font-size: 1.5em;
    margin-right: 15px;
    margin-top: 5px;
}

.disclaimer-item h4 {
    color: #f39c12;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.disclaimer-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .pricing-showcase {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .featured-price {
        transform: none;
        order: -1;
    }
    
    .pricing-intro {
        font-size: 1em;
    }
    
    .gold-bundle {
        transform: none;
        margin: 20px 0;
    }
    
    .savings-highlight,
    .longevity-highlight {
        position: static;
        margin: 10px 0;
        text-align: center;
    }
    
    .service-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .addon-pricing-options span {
        font-size: 0.9em;
    }
    
    .disclaimer-item {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-item i {
        margin: 0 0 10px 0;
    }
}

/* Service Detail Pages */
.service-overview {
    margin: 30px 0 50px 0;
}

.overview-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.stat h3 {
    color: #d4af37;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.stat p {
    color: #7f8c8d;
    font-weight: 500;
    margin: 0;
}

.value-breakdown ul {
    list-style: none;
    padding: 0;
}

.value-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.value {
    color: #27ae60;
    font-weight: bold;
}

.detail-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.detail-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #d4af37;
}

.detail-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.detail-section h3 i {
    color: #d4af37;
    margin-right: 10px;
}

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

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    padding-left: 25px;
}

.service-list li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.stain-process {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
}

.stain-process h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    position: relative;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid rgba(30, 144, 255, 0.2);
}

.step:nth-child(1) {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.step:nth-child(2) {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.step:nth-child(3) {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.12) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.step:nth-child(4) {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.12) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 144, 255, 0.3);
    border-color: rgba(30, 144, 255, 0.6);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #000000;
    border: 2px solid rgba(30, 144, 255, 0.5);
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(30, 144, 255, 0.9);
    box-shadow: 0 12px 32px rgba(30, 144, 255, 0.4);
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 144, 255, 0.05) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    transition: all 0.4s ease;
    pointer-events: none;
}

.step:hover .step-overlay {
    background: linear-gradient(
        135deg,
        rgba(30, 144, 255, 0.15) 0%,
        rgba(30, 144, 255, 0.05) 100%
    );
}

.step-content {
    position: relative;
    z-index: 2;
    padding: 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.step h3, .step h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    flex-shrink: 0;
}

.step p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.gold-disclaimers {
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.silver-disclaimers {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.cta-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #d4af37;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
}

.cta-highlight {
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    margin: 20px 0;
    font-size: 1.2em;
    font-weight: bold;
}

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

.gold-cta {
    background: linear-gradient(135deg, #fff8dc, #f0f8ff);
    border-color: #d4af37;
}

.savings-badge {
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 10px;
}

.discounted-price {
    color: #d4af37;
    font-size: 1.5em;
    font-weight: bold;
}

.original-price {
    color: #7f8c8d;
    text-decoration: line-through;
    font-size: 0.9em;
}

/* Animation for savings highlights */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}