/*
Theme Name: Weikot Oy
Theme URI: https://weikot.fi
Author: Weikot Oy
Author URI: https://weikot.fi
Description: Moderni WordPress-teema Weikot Oy:n kiinteistöhuoltopalveluille. Responsiivinen, SEO-optimoitu ja nopea.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: weikot
Tags: responsive, modern, business, real-estate
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 52px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Top Bar */
.top-bar {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: opacity 0.3s;
}

.phone-link:hover {
    opacity: 0.9;
}

.phone-link strong {
    font-weight: bold;
}

/* Header & Navigation */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
}

.main-navigation a:hover {
    color: #28a745;
}

/* Hero Section */
.hero-section {
    background-image: url('https://placehold.co/1920x650');
    background-size: cover;
    background-position: center;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #28a745;
    color: white;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    border: 3px solid white;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: white;
    color: #28a745;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.features-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    flex: 1;
    min-width: 280px;
}

.feature-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-header p {
    font-size: 18px;
    color: #666;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border: 4px solid #28a745;
    box-shadow: 0 8px 30px rgba(40,167,69,0.3);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    margin-top: 10px;
}

.pricing-price {
    margin-bottom: 20px;
}

.pricing-price .amount {
    font-size: 42px;
    font-weight: bold;
    color: #28a745;
}

.pricing-price .period {
    font-size: 18px;
    color: #666;
}

.pricing-yearly {
    font-size: 16px;
    color: #999;
    margin-top: 5px;
    margin-bottom: 30px;
}

.pricing-suitable {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    font-style: italic;
}

.pricing-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    color: #333;
}

.pricing-features li .check {
    color: #28a745;
    margin-right: 8px;
}

.pricing-button {
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.pricing-button:hover {
    background-color: #218838;
}

.pricing-note {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.testimonials-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

.testimonial-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: #333;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 20px;
    color: #333;
    flex-wrap: wrap;
}

.stat-item {
    display: inline-block;
    margin: 0 15px;
}

/* Special Offer Section */
.special-offer-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
}

.special-offer-section h2 {
    color: white;
    font-size: 38px;
    margin-bottom: 25px;
}

.offer-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.offer-list {
    list-style: none;
    padding: 0;
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 35px;
    text-align: left;
}

.offer-list li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.offer-note {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.offer-button {
    background-color: white;
    color: #667eea;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

/* Order Form Section */
.order-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.order-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.order-form-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.order-form-subtitle {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 45px;
    line-height: 1.6;
}

/* Form Steps Indicator */
.form-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s;
}

.step.active .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.step.active .step-label {
    color: #28a745;
    font-weight: bold;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    max-width: 80px;
}

.order-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 16px;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #28a745;
    background: white;
    box-shadow: 0 0 0 4px rgba(40,167,69,0.1);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Package Radio Buttons */
.package-radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.package-radio {
    flex: 1;
    min-width: 200px;
    cursor: pointer;
}

.package-radio input[type="radio"] {
    display: none;
}

.radio-content {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    background: white;
}

.package-radio input[type="radio"]:checked + .radio-content,
.radio-content.selected {
    border-color: #28a745;
    background: #f8fff9;
    box-shadow: 0 4px 15px rgba(40,167,69,0.2);
}

.radio-content strong {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.radio-content span {
    display: block;
    font-size: 16px;
    color: #666;
}

.radio-content.featured-radio {
    border: 2px solid #28a745;
    position: relative;
}

.radio-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 4px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.package-radio input[type="radio"]:checked + .radio-content.featured-radio {
    box-shadow: 0 6px 20px rgba(40,167,69,0.3);
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
}

.form-checkbox a {
    color: #28a745;
    text-decoration: underline;
}

/* Submit Button */
.order-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 20px 45px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-submit-button:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea87a 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
}

.order-submit-button:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.form-note a {
    color: #28a745;
    font-weight: bold;
}

/* Success/Error Messages */
.order-form-success,
.order-form-error {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.order-form-success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.order-form-success h3 {
    color: #28a745;
    margin-bottom: 10px;
}

.order-form-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .pricing-grid {
        flex-direction: column;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .testimonials-grid {
        flex-direction: column;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        margin: 5px 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-bar {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .phone-link {
        font-size: 14px;
    }
    
    .form-steps {
        gap: 5px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .step-line {
        max-width: 40px;
    }
}

/* Professional Form Styles */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-step.active,
.form-step[data-step="1"]:first-of-type {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 3px solid #e9ecef;
}

.step-header h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

.label-icon {
    margin-right: 6px;
    font-size: 18px;
}

.form-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-input.error,
.form-textarea.error {
    border-color: #dc3545;
}

.form-input.error:focus,
.form-textarea.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Enhanced Radio Buttons */
.radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.radio-header strong {
    font-size: 20px;
    color: #333;
}

.radio-price {
    font-size: 18px;
    font-weight: 600;
    color: #28a745;
    font-style: italic;
}

.radio-price small {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.radio-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.radio-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    margin-top: 15px;
}

.radio-features span {
    font-size: 14px;
    color: #555;
    padding-left: 5px;
}

/* Order Summary */
.order-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.order-summary h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #666;
}

.summary-value {
    color: #333;
    text-align: right;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.btn-prev,
.btn-next {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #dee2e6;
    background: white;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-prev:hover {
    background: #f8f9fa;
    border-color: #28a745;
    color: #28a745;
    transform: translateX(-2px);
}

.btn-next {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    margin-left: auto;
    box-shadow: 0 4px 12px rgba(40,167,69,0.25);
}

.btn-next:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea87a 100%);
    transform: translateX(2px);
    box-shadow: 0 6px 16px rgba(40,167,69,0.35);
}

.order-submit-button {
    margin-left: auto;
    min-width: 200px;
}

.order-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-loading {
    display: inline-block;
}

/* Enhanced Success/Error */
.success-icon,
.error-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.success-icon {
    background: #28a745;
    color: white;
}

.error-icon {
    background: #dc3545;
    color: white;
}

.order-number {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 16px;
}

.order-number strong {
    color: #28a745;
    font-size: 20px;
}

.success-actions {
    margin-top: 25px;
}

.btn-back-home {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #28a745;
    border: 2px solid #28a745;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #28a745;
    color: white;
}

.form-security {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.form-security .form-note {
    font-size: 13px;
    color: #888;
    text-align: center;
    line-height: 1.6;
}

/* Service Selection Styles */
.service-category {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.service-category:last-of-type {
    margin-bottom: 25px;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #28a745;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.service-checkbox {
    position: relative;
    cursor: pointer;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    overflow: hidden;
}

.service-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #28a745;
    transform: scaleY(0);
    transition: transform 0.3s;
}

.service-checkbox:hover {
    border-color: #28a745;
    background: #f8fff9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40,167,69,0.1);
}

.service-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-checkbox input[type="checkbox"]:checked + .checkbox-content::before {
    content: '✓';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: translateY(-50%) scale(0);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

.service-checkbox input[type="checkbox"]:checked ~ .checkbox-content,
.service-checkbox:has(input[type="checkbox"]:checked) {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%);
    box-shadow: 0 4px 16px rgba(40,167,69,0.2);
    transform: translateY(-2px);
}

.service-checkbox:has(input[type="checkbox"]:checked)::before {
    transform: scaleY(1);
}

.checkbox-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding-left: 10px;
}

.service-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.4;
}

.service-checkbox:has(input[type="checkbox"]:checked) .service-name {
    color: #28a745;
}

.service-price {
    font-weight: 700;
    color: #28a745;
    font-size: 18px;
    white-space: nowrap;
    margin-left: 15px;
}

.service-checkbox:has(input[type="checkbox"]:checked) .service-price {
    color: #218838;
    font-size: 20px;
}

/* Price Preview */
.price-preview {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-top: 35px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(40,167,69,0.25);
    position: relative;
    overflow: hidden;
}

.price-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.price-preview-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.price-label {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.95;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.price-note {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 400;
}

.price-disclaimer {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
    margin-top: 15px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

