.services-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 48px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 16px;
            color: #666;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .vertical-tabs-container {
            display: flex;
            gap: 30px;
            margin-top: 50px;
        }

        .tabs-nav {
            flex: 0 0 280px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            padding: 20px;
            height: fit-content;
        }

        .tab-button {
            width: 100%;
            padding: 18px 25px;
            margin-bottom: 10px;
            background: transparent;
            border: none;
            text-align: left;
            cursor: pointer;
            font-size: 16px;
            color: #555;
            border-radius: 10px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 500;
        }

        .tab-button i {
            font-size: 20px;
            color: #f45a7a;
            transition: transform 0.3s ease;
        }

        .tab-button:hover {
            background: #fff5f5;
            transform: translateX(5px);
            color: #f45a7a;
        }

        .tab-button.active {
            background: linear-gradient(135deg, #f45a7a 0%, #f45a7a 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        .tab-button.active i {
            color: white;
            transform: scale(1.1);
        }

        .tabs-content {
            flex: 1;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            padding: 40px;
        }

        .tab-pane {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-pane.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tab-content-header {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 3px solid #f45a7a;
        }

        .tab-content-header h3 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .tab-content-body p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .feature-box {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #f45a7a;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .feature-box i {
            font-size: 24px;
            color: #f45a7a;
            margin-bottom: 10px;
        }

        .feature-box h4 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .feature-box p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        .pricing-section {
            background: #f9f9f9;
            padding: 60px 0;
            margin-top: 80px;
        }

        .pricing-section h2 {
            font-size: 42px;
            color: #f45a7a;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 700;
        }

        .service-pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 5px solid #f45a7a;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            cursor: pointer;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(244, 90, 122, 0.2);
        }

        .pricing-card h5 {
            font-size: 22px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .pricing-card .price {
            font-size: 28px;
            color: #f45a7a;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .pricing-card .book-btn {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, #f45a7a 0%, #f093a0 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .pricing-card .book-btn:hover {
            transform: scale(1.05);
        }

        .popup-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            animation: fadeIn 0.3s ease;
        }

        .popup-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
            box-shadow: 0 10px 50px rgba(0,0,0,0.3);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            color: #666;
            cursor: pointer;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background: #f45a7a;
            color: white;
            transform: rotate(90deg);
        }

        .popup-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .popup-header h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .popup-header .selected-service {
            font-size: 18px;
            color: #f45a7a;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .popup-header p {
            color: #666;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 14px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }

        .form-control:focus {
            outline: none;
            border-color: #f45a7a;
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #f45a7a 0%, #f093a0 100%);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(244, 90, 122, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .alert {
            padding: 12px 15px;
            margin-bottom: 20px;
            border-radius: 8px;
            display: none;
            font-size: 14px;
        }

        .alert.show {
            display: block;
        }

        .alert-success {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }

        .alert-error {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }

        @media (max-width: 768px) {
            .vertical-tabs-container {
                flex-direction: column;
            }

            .tabs-nav {
                flex: 1;
            }

            .tab-content-header h3 {
                font-size: 24px;
            }

            .popup-content {
                padding: 30px 20px;
            }

            .section-header h2 {
                font-size: 36px;
            }

            .popup-header h2 {
                font-size: 24px;
            }
        }